gpt4 book ai didi

ios - 以编程方式为 NSUserActivity 创建提醒

转载 作者:行者123 更新时间:2023-11-29 12:12:52 26 4
gpt4 key购买 nike

在 iOS 9 中,NSUserActivities 可以与 Siri 一起使用,例如,“Siri,请在一小时内提醒我”,在她知道“THIS”是什么的上下文的情况下创建提醒。有没有办法以编程方式执行此操作,以便单击按钮即可创建提醒?

最佳答案

您可以简单地安排一个 UILocalNotification 来提醒用户:

 NSDate *dateInOneHour = [[NSDate date] dateByAddingTimeInterval:3600];

UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.fireDate = dateInOneHour;
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = @"Don't forget about THIS";
localNotif.alertAction = @"View";
localNotif.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];

关于ios - 以编程方式为 NSUserActivity 创建提醒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32846693/

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