我一个月前下载了xcode。我正在尝试添加webkit
框架以在 iOS 开发中使用它。它没有与其他框架一起列出。我必须手动下载吗?我错过了什么?
问问题
2942 次
1 回答
0
Cocoa Touch 中没有 Webkit.framework。webkit 框架仅在 OS X 上可用。对于 iOS,只需使用 UIWebview。
有关更多信息,请查看此处:http: //developer.apple.com/library/ios/#documentation/uikit/reference/UIWebView_Class/Reference/Reference.html
本质上虽然这很容易。只需在 .h 中添加一个 UIWebview,将它连接到 Storyboard 中的 webview。此外,在您的 .h 中,添加 UIWebview 委托。
就像是:
@interface yourViewController : UIViewController <UIWebViewDelegate>
然后,在 .m 中,使用
[webView setDelegate:self];
可能在您的 viewDidLoad 方法中。
祝你好运!
于 2013-02-18T18:49:14.307 回答