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.
我正在开发一个 iOS 应用程序,我在其中从 Web 服务更新我的数据库内容。
但是当用户杀死应用程序并再次启动它时,我想恢复我的网络服务方法。
正如我所想,您想在应用程序再次启动时更新您的数据库。
然后你可以使用 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
AppDelegate 的
每次应用程序启动时都会调用它。如果您希望它用于某些特定的 viewController,您可以在 viewWillAppear 块中添加该方法