减少phonegap应用程序ios中的html文件加载时间?

Posted

技术标签:

【中文标题】减少phonegap应用程序ios中的html文件加载时间?【英文标题】:Reduce html file loading time in phonegap application ios? 【发布时间】:2013-10-25 05:39:06 【问题描述】:

我正在开发一个简单的 phonegap 应用程序,因为它需要大约 3 分钟来加载文件(用于显示主页)直到它显示启动图像(启动屏幕)有什么方法可以让它快速吗?

“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 的人开发一个系统来实现它加载效率更高。

【讨论】:

以上是关于减少phonegap应用程序ios中的html文件加载时间?的主要内容,如果未能解决你的问题,请参考以下文章

在 iOS (iPad) 上减少 phonegap、sencha touch 的内存占用

如何在 iOS phonegap 应用程序中压缩 wav 文件

iOS 上 Phonegap 应用中的 Pdf / Docx 预览

我可以通过 IOS 中的 phonegap/cordova 在 www 目录中创建一个文件夹吗?

通过 PhoneGap 将 html javascript 转换为 iOS 应用程序

如何在后台为ios音频文件运行Phonegap应用程序