如何将 Web 浏览器嵌入到我的 Cocoa 应用程序中?
我需要学习如何将网络浏览器添加到可可应用程序中。 (苹果)
I need to learn how to add a web browser into a cocoa application. (Mac)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要学习如何将网络浏览器添加到可可应用程序中。 (苹果)
I need to learn how to add a web browser into a cocoa application. (Mac)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
尝试 WebKit。特别是,您可能会发现开发人员工具附带的
MiniBrowser
示例很有趣。它应该位于/Developer/Examples/WebKit/MiniBrowser
。Try WebKit. In particular, you might find the
MiniBrowser
example that comes with the developer tools interesting. It should be at/Developer/Examples/WebKit/MiniBrowser
.这不是很困难:
1) 将 WebView 对象添加到您的界面生成器项目中。
2)(这是重要的部分)确保实现所需的委托方法并将您的实现类设置为WebView委托(在IB中)。我不太记得了,但我认为您需要在委托中实现大约 6 种方法......然后它就会起作用。
(当然,检查示例代码......)
It's not very difficult:
1) add a WebView object to your interface builder project.
2) (this is the important part) be sure to implement the required delegate methods and set your implementing class as the WebView delegate (in IB). I don't recall exactly, but I think there are like 6 methods you need to implement in your delegate... then it will just work.
(of course, check the example code...)