さまざまなアラート本文で UILocalNotification を繰り返すにはどうすればよいですか?
例えば:
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.alertBody = @"Hello";
notif.repeatInterval = NSDayCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
このコードを使用すると、通知は毎日繰り返されます。毎日異なるアラート本文で通知を毎日繰り返すにはどうすればよいですか?
ありがとう。