iOS版
应用程序最小化后我们可以调用该方法吗?
例如,被叫5秒后applicationDidEnterBackground:.
我使用此代码,但test方法不调用
- (void)test
{
printf("Test called!");
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
[self performSelector:@selector(test) withObject:nil afterDelay:5.0];
}
Run Code Online (Sandbox Code Playgroud)