我正在尝试在我的应用程序运行时保持iphone屏幕打开.我跟着这篇文章: phonegap,iphone和大坏的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.