我有一个类似的数组:
_combinedBirthdates(
"03/05/2013",
"09/22/1986",
"03/02/1990",
"03/02",
"08/22/1989",
"11/02/1990",
"07/08",
"08/31/1990",
"05/13",
"07/11/2007",
"10/07/2010",
"02/20/1987")
如果今天的日期与上述数组中的日期相同,我想要本地通知
我使用以下逻辑进行通知:
NSLog(@" _combinedBirthdates%@",_combinedBirthdates);
NSDateFormatter *Formatter1 = [[NSDateFormatter alloc] init];
[Formatter1 setDateFormat:@"MM/dd"];
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
NSDate *date1 =[NSDate date];
NSString *string =[Formatter1 stringFromDate:date1];
NSDate *todaydate =[Formatter1 dateFromString:string];
for (int i=0;i<_combinedBirthdates.count;i++)
{
NSDate *date =[Formatter1 dateFromString:[_combinedBirthdates objectAtIndex:i ]];
if(date == todaydate){
localNotif.fireDate = date;
localNotif.alertBody = @"birthdate notification";
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
}
现在我的问题:
- 这段代码可以吗?
- 我需要设备来测试此代码还是可以在模拟器中测试它?
- 什么时候会出现通知?凌晨 12:00?
- 如果申请被关闭,会出现通知吗?
- 如果代码不正确,请修改它。