2

私は単純な phonegap アプリケーションに取り組んでおり、(ホームページを表示するために) ファイルをロードするのに約 3 分かかり、その時までスプラッシュ画像 (起動画面) が表示されます。

「WWW」フォルダーの合計ファイル サイズは 5.3 MB で、アプリのデリゲート アプリケーション didFinishLaunchingWithOptions() を以下に示します

- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions
{
    CGRect screenBounds = [[UIScreen mainScreen] bounds];


#if __has_feature(objc_arc)
        self.window = [[UIWindow alloc] initWithFrame:screenBounds];
#else
        self.window = [[[UIWindow alloc] initWithFrame:screenBounds] autorelease];
#endif
    self.window.autoresizesSubviews = YES;

#if __has_feature(objc_arc)
        self.viewController = [[MainViewController alloc] init];
#else
        self.viewController = [[[MainViewController alloc] init] autorelease];
#endif
    self.viewController.useSplashScreen = YES;

    // Set your app's start page by setting the <content src='foo.html' /> tag in config.xml.
    // If necessary, uncomment the line below to override it.
    // self.viewController.startPage = @"index.html";

    // NOTE: To customize the view's frame size (which defaults to full screen), override
    // [self.viewController viewWillAppear:] in your view controller.

    self.window.rootViewController = self.viewController;
    [self.window makeKeyAndVisible];

    return YES;
}
4

1 に答える 1

-1

私は、同様の問題を抱えている他の人々を知っています (ただし、3 分の遅延ではありません!)。あなたにできることはあまりないと思います。PhoneGap の人々が、より効率的なシステムを開発するのを待つ必要があると思います。読み込み中。

于 2014-01-09T13:51:55.437 に答える