UILocalNotification with repeatInterval如何设置完成日期?

时间:2014-01-29 17:07:30

标签: date uilocalnotification

我有一个UILocalNotification,其repeatInterval设置如下:

UILocalNotification *ln = [[UILocalNotification alloc] init];
ln.alertBody         = text;
ln.timeZone          = [NSTimeZone defaultTimeZone];
ln.fireDate          = [self dateFromString:atDate];
ln.repeatInterval = NSDayCalendarUnit;

我想在指定的日期停止重播。

我该怎么做?

谢谢, 西蒙

1 个答案:

答案 0 :(得分:1)

根据答案:UILocalNotification end date,UILocaNotification的文档中没有找到此类属性。