想要在应用程序从后台进入前景时显示警报

时间:2013-02-13 00:41:11

标签: objective-c

我正在尝试构建一个iOS应用程序,当应用程序进入后台并且用户将其带到前台时,我想显示一条消息,如“欢迎回来”,有没有办法做到这一点? 我已经阅读了UILocalNotification,但这不是我想要的。

2 个答案:

答案 0 :(得分:2)

是的,当然。对于这种方法,您应该始终查看AppDelegate.m文件。 它有默认方法:

- (void)applicationWillEnterForeground:(UIApplication *)application 
{
    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Welcome back!" message:@"Welcome back!" delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
    [alert show];
}

有些......

答案 1 :(得分:1)

实施UIApplicationDelegate applicationWillEnterForeground:方法。当应用程序返回前台时调用此方法。