gpt4 book ai didi

macos - 我可以在 OSX 中使用 iOS 的本地推送通知吗

转载 作者:行者123 更新时间:2023-12-03 16:48:39 33 4
gpt4 key购买 nike

有没有办法让 iOS 的本地推送通知在 OSX 上工作?我有一个程序,即使该程序关闭,我也希望从本地计算机接收预定通知。

最佳答案

这是用于本地通知

 - (void)scheduleNotificationWithItem:(ToDoItem *)item interval:(int)minutesBefore {

NSCalendar *calendar = [NSCalendar autoupdatingCurrentCalendar];

NSDateComponents *dateComps = [[NSDateComponents alloc] init];

[dateComps setDay:item.day];

[dateComps setMonth:item.month];

[dateComps setYear:item.year];

[dateComps setHour:item.hour];

[dateComps setMinute:item.minute];

NSDate *itemDate = [calendar dateFromComponents:dateComps];

[dateComps release];



UILocalNotification *localNotif = [[UILocalNotification alloc] init];

if (localNotif == nil)

return;

localNotif.fireDate = [itemDate addTimeInterval:-(minutesBefore*60)];

localNotif.timeZone = [NSTimeZone defaultTimeZone];



localNotif.alertBody =@"Local Notification";

localNotif.alertAction = NSLocalizedString(@"View Details", nil);



localNotif.soundName = UILocalNotificationDefaultSoundName;

localNotif.applicationIconBadgeNumber = 1;



NSDictionary *infoDict = [NSDictionary dictionaryWithObject:item.eventName forKey:ToDoItemKey];

localNotif.userInfo = infoDict;



[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];

[localNotif release];

}

关于macos - 我可以在 OSX 中使用 iOS 的本地推送通知吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11490686/

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