我有一个UILocalNotification,其repeatInterval设置如下:
UILocalNotification *ln = [[UILocalNotification alloc] init];
ln.alertBody = text;
ln.timeZone = [NSTimeZone defaultTimeZone];
ln.fireDate = [self dateFromString:atDate];
ln.repeatInterval = NSDayCalendarUnit;
我想在指定的日期停止重播。
我该怎么做?
谢谢, 西蒙