我有一个HTML Ajax网站,它只包含一个HTML文件.如何创建iPhone应用程序呢?HTML文件应该本地存储在iPhone上,以便脱机运行.
UIWebView *htmlView = [[UIWebView alloc] initWithFrame:CGRectMake(0.0,0.0,320.0,380.0)]; [htmlView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]isDirectory:NO]]]; [self.view addSubview:htmlView]; [htmlView release];