0
我的應用程序加載模擬器中的網站,但當我在設備上運行它沒有出現WebView加載模擬器但不是在設備
它是一個Xcode的問題?或許更新的問題(我的iPhone上顯示我已準備好更新,但我沒有)
這是我的代碼
#import "twitterViewController.h"
@interface twitterViewController()
@end
@implementation twitterViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
NSString *[email protected]"https://www.youtube.com/"; //It's like a template page
NSURL *url = [NSURL URLWithString:webSite];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[twitterWeb loadRequest:request];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
你可以去你試圖加載在設備上的Safari網頁嗎?它在那裏裝載?當您在設備上運行時,是否在設備控制檯中收到任何錯誤消息? – wottle
你真正的URL是什麼? –