我一个月前下载了xcode。我正在尝试添加webkit
框架以在iOS开发中使用它。它没有与其他框架一起列出。我必须手动下载吗?我错过了什么吗?
答案 0 :(得分: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方法中。