作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个使用用户位置的 iPhone 应用程序,但是我注意到当 iPhone 屏幕休眠/关闭时,手机仍在使用用户位置。那么有没有一个函数可以告诉我屏幕何时休眠,以便我可以停止UpdatingLocation?
@interface RideauAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
UIWindow *window;
UITabBarController *tabBarController;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
@end
最佳答案
您可以使用:
- (void)applicationWillResignActive:(UIApplication *)application {
[[[self.tabBarController.viewControllers objectAtIndex:0] locationManager] stopUpdatingLocation];
//if it is your first VC, if not change objectAtIndex: to the correct one
}
关于iPhone 如何在 iPhone 屏幕休眠时告诉应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6415914/
我是一名优秀的程序员,十分优秀!