Local Notification “Everyday at 7:00am” not notifying

前端 未结 4 509
暗喜
暗喜 2021-01-03 16:20

I want a notification to go off everyday at 7:00, but it will not go off. I also want it to show in lock screen. Here is all the code I have so far.

-(void)         


        
4条回答
  •  粉色の甜心
    2021-01-03 16:55

    even though this is a very old question i just came here from google and yeah isn't it funny how everyone answers by just copying other peoples answer?

    So for all the people like me coming from google, have a laugh at the spelling mistake that mite cost you a minute or two of wondering why it doesn't work.

    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
    

    works, but

    [[UIApplication sharedApplication] scheduleLocalNotiication:localNotification];
    

    Notiication doesn't...

提交回复
热议问题