gpt4 book ai didi

iPhone 如何在 iPhone 屏幕休眠时告诉应用程序

转载 作者:行者123 更新时间:2023-12-03 19:39:22 25 4
gpt4 key购买 nike

我正在制作一个使用用户位置的 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com