ここに、配列があります。
weeklySnippets = [[NSArray alloc] initWithObjects:
@"Message 1"
, @"Message 2"
, @"Message 3"
, @"Message 4"
, @"Message 5"];
毎週の配列インデックスに従って通知アラートメッセージを変更するにはどうすればよいですか。たとえば、week = 1の場合、インデックス=0の最初のメッセージ(「メッセージ1」など)が表示されます。
UILocalNotification *notifWeek = [[UILocalNotification alloc] init];
notifWeek.fireDate = [NSDate date];
notifWeek.alertBody = notifText;
notifWeek.repeatInterval = NSWeekCalendarUnit;