在这里,我有一个数组:
weeklySnippets = [[NSArray alloc] initWithObjects:
@"Message 1"
, @"Message 2"
, @"Message 3"
, @"Message 4"
, @"Message 5"];
我应该如何根据每周的数组索引更改通知警报消息:例如,当 week=1 时,它应该在 index=0 处显示第一条消息,即“消息 1”等等。
UILocalNotification *notifWeek = [[UILocalNotification alloc] init];
notifWeek.fireDate = [NSDate date];
notifWeek.alertBody = notifText;
notifWeek.repeatInterval = NSWeekCalendarUnit;