我想自己试试,但是要花一个月才能确定它能行得通。
NSDate *fireDate = // Date I want to repeat, in this case 31 may
localNotification.fireDate = fireDate;
localNotification.repeatInterval = NSMonthCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
我期望它每月最后一天就发出警报。 这是一条出路吗? 如果我在30天的月里安排它, 第二天的月是31天的月, 如 April - gt; May; 我该怎么办, 因为我只能设定到4月30日( 也是2月28日和29日的问题 ) 。