2016-05-24 65 views
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 
+0

你可以去你試圖加載在設備上的Safari網頁嗎?它在那裏裝載?當您在設備上運行時,是否在設備控制檯中收到任何錯誤消息? – wottle

+0

你真正的URL是什麼? –

回答

0

下載該網站在模擬器,但是當我跑的裝置它沒有出現,

在文件名中可能是錯誤的情況。意思是,假設你的文件想要加載文件'Abc.js',而它的名字是'abc.js'。

你應該檢查你的'網址'

相關問題