2013-10-25 81 views
2

我工作在一個簡單的phonegap應用程序,它需要大約3分鐘來加載文件(用於顯示主頁),直到它顯示飛濺圖像(啓動屏幕)有什麼辦法讓它快?在phonegap應用程序中減少html文件加載時間?

總「WWW」文件夾中的文件大小爲5.3MB 我的應用程序委託申請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; 
} 

回答

-1

我知道其他人有類似的問題(但不是3分鐘延遲!) ,我不確定你能做多少事情,我認爲我們需要等待PhoneGap人員開發一個系統,使其更加高效地加載。