如何將HTML文件加載到我的應用程序(xcode)中?我正在使用以下代碼:如何加載HTML文件?
- (void)viewDidLoad
{
[super viewDidLoad];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]isDirectory:NO]]];
}
當我啓動應用程序時,我只能看到一個白頁。怎麼了?
.h文件中:
#import <UIKit/UIKit.h>
@interface poules : UIViewController {
IBOutlet UIWebView *webView;
}
@property (nonatomic,retain) UIWebView *webView;
@end
你的代碼看起來正確,應用程序輸出窗格中是否有任何調試消息?並且是通過IB連接到它的UI的webView對象? –