gpt4 book ai didi

ios - 当应用程序在后台运行时显示 UIAlert?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:47:11 25 4
gpt4 key购买 nike

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"open app" message:@" backgr..." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];

[alertView show];

当应用程序在后台运行时,如何显示警报?

最佳答案

使用 UILocalNotification当您的应用程序处于后台时。

UILocalNotification *notification = [[UILocalNotification alloc] init];
notification.alertBody = @"Your message";
notification.alertAction = @"Open app";
[[UIApplication sharedApplication] presentLocalNotificationNow:notification];

关于ios - 当应用程序在后台运行时显示 UIAlert?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15702730/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com