2
對於尚未創建的通知(新通知)更改,但對於已創建的通知,先前的聲音保留。更改已設置的UILocalNotification的聲音名稱
我曾嘗試:
NSString *soundName = cell.titleLabel.text;
NSArray *notifications = [[UIApplication sharedApplication] scheduledLocalNotifications];
for (UILocalNotification *notif in notifications) {
notif.soundName = [NSString stringWithFormat:@"%@.mp3", soundName];
}
,但它不工作...