Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我有一个问题,当没有启用 gps 时会显示一条消息,然后您转到设置并激活 gps(定位服务:打开)并返回应用程序并且它不刷新?如何检测该事件并刷新页面?
您很可能正在寻找- (void)applicationWillEnterForeground:(UIApplication *)application您的应用程序委托的方法。
- (void)applicationWillEnterForeground:(UIApplication *)application
实现此方法,并添加检查 GPS 可用性的代码。每当您的应用程序从后台(非活动)进入前台(活动)时,都会调用该方法。最初启动应用程序时不会调用它。