default.png から自分のアプリまでアプリをシームレスにするにはどうすればよいですか? 別の場所にロードする必要がありますか?参考までに、私は 4.2.1(8C148) を実行するテスト用に iPod Touch 第 2 世代しか持っていません。4.2 シミュレーターは同じことを行います。4.3 シミュレーターは正常に動作します。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]isDirectory:YES]]];
// Override point for customization after application launch.
// Add the view controller's view to the window and display.
[self.window addSubview:viewController.view];
[self.window makeKeyAndVisible];
return YES;
}