我一直在嘗試這一段時間,但我沒有弄清楚它的正確性。以編程方式創建UIWebView
我寫了下面的初始化函數中的一個配套文件:
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
webview=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 1024,768)];
}
return self;
}
和ViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
UIWebView *view = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 1024, 768)];
NSString *[email protected]"http://www.google.com";
NSURL *nsurl=[NSURL URLWithString:url];
NSURLRequest *nsrequest=[NSURLRequest requestWithURL:nsurl];
[view loadRequest:nsrequest];
}
我也試着創造的appDelegate的didFinishLaunchingWithOptions:
方法的WebView以下,但也沒有工作。
什麼是正確的方法?
感謝的接口,但即時得到錯誤的self.view – user1153798
@ user1153798如果代碼是'UIViewController','self.view'應精細。 '.view'可能是錯誤的 - 請嘗試'[self.view webview]'(參見編輯)。 – dasblinkenlight