我在S/O上搜索,沒有答案已經應用到我的代碼,所以我假設我的代碼中缺少的東西。UIWebView不顯示HTML
我加了一個UIWebView
使用Interface Builder稱爲showAbout
我宣佈這裏有一個IBOutlet伊娃:
@interface About : UIViewController<UIWebViewDelegate>
{
IBOutlet UIWebView *showAbout;
}
@property (nonatomic, retain) IBOutlet UIWebView *showAbout;
我證實了InterfaceBuilder事實上確實有它設置一個出口。
這裏是我如何設置它在about.m
showAbout.scalesPageToFit = YES;
NSString *thePath = [[NSBundle mainBundle] pathForResource:@"about" ofType:@"html"];
if (thePath) {
NSData *aboutData = [NSData dataWithContentsOfFile:thePath];
[showAbout loadData:aboutData MIMEType:@"application/html"
textEncodingName:@"utf-8" baseURL:nil];
的UIWebView中不顯示,我已經添加到項目中我的HTML頁面。
任何想法...
http://stackoverflow.com/questions/6263289/accesing-a-file-using-nsbundle-mainbundle-pathforresource-oftypeindirectory可能是你的問題。 – 2013-07-14 20:24:09
是關於數據無? –
@PaulCezanne,我沒有設置從我的Mac這個賞金...將今晚檢查和建議。 – logixologist