0

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

4

2 回答 2

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];
}

有的那种...

于 2013-02-13T00:48:05.987 回答
1

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

于 2013-02-13T00:47:46.717 回答