UILocalNotification custom sound

前端 未结 3 1223
无人及你
无人及你 2021-01-12 07:25

I have been searching for a solution for hours.. with absolutely zero luck.

I set up a Local Notification:

UILocalNotification *notif = [[cls alloc]          


        
3条回答
  •  迷失自我
    2021-01-12 07:48

    are you cleaning the old notifications with

    UIApplication* app = [UIApplication sharedApplication];
    NSArray*  oldNotifications = [app scheduledLocalNotifications];
    
    // Clear out the old notification before scheduling a new one.
    [app cancelAllLocalNotifications];
    

    ?

提交回复
热议问题