0
我需要設置一個UILocatNotification在上午9點每天開火。任何幫助,將不勝感激。如何設置一個UILocatNotification在上午9點每天開火
我需要設置一個UILocatNotification在上午9點每天開火。任何幫助,將不勝感激。如何設置一個UILocatNotification在上午9點每天開火
[formatter setDateFormat:[NSDateFormatter dateFormatFromTemplate:@"yyyy-MM-dd HH:mm:ss"
options:0
locale:nil]];
[formatter setTimeZone:[NSTimeZone localTimeZone]];
notification.fireDate = [formatter dateFromString:@"2010-10-21 09:00:00"];
notification.repeatInterval = NSDayCalendarUnit;
到目前爲止你做了什麼? – 2011-05-21 01:13:02
一切都完成我只需要知道如何格式化已開始的方法。 – HenryGale 2011-05-21 01:18:11