作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在我的应用程序运行时保持 iPhone 屏幕打开。我关注了这篇文章: phonegap, iphone and the big bad idleTimerDisabled
并在 PhoneGapDelegate.m 中做了类似的事情:
-(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// existing code ...
application.idleTimerDisabled = YES; // I added this line
return YES; // existing code
}
但是没有成功。
我也尝试过这种方法:http://groups.google.com/group/phonegap/browse_thread/thread/5eeace5c416719ec/d7180ef5a3a9081d?lnk=gst&q=lock#d7180ef5a3a9081d但也没有成功。
有人能给我一些建议吗?谢谢!
更新:谢谢大家!事实证明我更改了错误的 fil(PhoneGapDelegate.m)。该文件中的 applicationdidfinishlaunching 方法从未被调用。要更改的文件是AppDlegate.m。
最佳答案
github上有一个phonegap插件可用
它允许直接从 .js 设置和重置“idletimerdisabled”。它也更干净,因为您无需修改 PhoneGap 代码,并且也可以在 Android 上运行。
关于iphone - 如何在 Phonegap 1.0 中保持 iPhone 屏幕常亮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6989872/
我是一名优秀的程序员,十分优秀!