如何在iPhone上构建WebKit?

发布于 2024-12-09 06:08:59 字数 175 浏览 0 评论 0原文

我已经在 Mac 上构建了 WebKit,但我想在 iPhone 上构建它。

我应该将 Cocoa 框架转换为 CocoaTouch 框架吗?

就像 NSViewUIView 一样?

或者还有其他功能吗?

I have built WebKit on Mac, but I want to build it on iPhone.

Should I convert Cocoa framework to CocoaTouch framework?

Like NSView to UIView?

or any other functions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙女山的月亮 2024-12-16 06:08:59

当然有些东西不能直接从 Cocoa 转换到 UIKit。是的,Webkit 的核心主要是独立于平台的 C++,但是,所有漂亮的视图都需要比仅仅类替换更多的工作。不仅仅是内部机制,您还必须完全重新设计 iOS 界面的视图——处理滚动和缩放的触摸、获取输入表单和文本选择以与系统范围的文本协议配合使用等。

除非您有要做一些极其复杂的事情,只需坚持使用 UIWebView 即可。

There are certainly going to be things not directly translatable from Cocoa to UIKit. Yes the core of Webkit is mostly platform-independent C++, however, all the nice views will require a lot more work than just class replacement. More than just internal mechanics, you also have to deal with completely redesigning the views for the iOS interface--handling touches for scrolling and zooming, getting input forms and text selection to work with the system-wide text protocols, etc.

Unless you have to do something ridiculously complicated, just stick with UIWebView.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文