Я учусь писать приложение для Webkit на iOS.В Xcode 3.x у меня есть index.html, распространяемый в папке Resources, и следующий код работает правильно:
- (void)viewDidUnload
{
[super viewDidUnload];
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSData *htmlData = [NSData dataWithContentsOfFile:filePath];
if (htmlData)
{
NSBundle *bundle = [NSBundle mainBundle];
NSString *path = [bundle bundlePath];
NSString *fullPath = [NSBundle pathForResource:@"index" ofType:@"html" inDirectory:path];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:fullPath]]];
}
}
index.html не загружается при создании проекта в Xcode 4.2.У меня есть index.html в папке «Вспомогательные файлы».Я что-то пропустил?Пожалуйста, помогите.
Спасибо
Адриан