2013-10-25 32 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人员开发一个系统,使其更加高效地加载。