create a UIWebView and load a website programmatically

前端 未结 3 651
执笔经年
执笔经年 2020-12-30 02:35

The following is my code. I simply want to load a website page and put a back button on screen. Don\'t know why nothing shows on the screen.

in .h

#i         


        
3条回答
  •  误落风尘
    2020-12-30 03:28

    Initialize your webView.

    UIWebView *tempWebview = [[UIWebView alloc]initWithFrame:theFrame];
    NSString *urlAddress = @"http://www.apple.com";
    NSURL *url = [NSURL URLWithString:urlAddress];
    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
    self.myWebView = tempWebview;
    [tempWebview loadRequest:requestObj];
    [tempWebview release];
    myWebView.delegate=self; 
    

提交回复
热议问题