我有一個標籤欄控件。第一個選項卡包含導航控件。在第二個標籤上,我想加載一個網頁(比如google.com)。我寫的代碼爲URL在UIWebView中不加載
NPIViewController.h
@interface NPIViewController : UIViewController {
IBOutlet UIWebView *webView;
}
@property (nonatomic,retain) IBOutlet UIWebView *webView;
@end
NPIViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView setScalesPageToFit:YES];
[self.webView loadRequest:request];
}
頁面只是不加載。沒有編譯或運行時錯誤。這有什麼問題?
它顯示的東西?它工作嗎? – Ravin 2011-04-13 06:41:43