2011-07-13 18 views

答えて

0
UILocalNotification *notif = [[UILocalNotification alloc] init]; 
notif.alertBody = @"HI"; 
[notif setFireDate:DATE];// fire the notification in ten minutes 
notif.alertAction = @"View"; 
notif.timeZone = [NSTimeZone defaultTimeZone]; 
[[UIApplication sharedApplication] scheduleLocalNotification:notif]; 
に説明されて
0

UILocalNotificationを設定し、scheduleLocalNotification:UIApplicationとスケジュールします。あなたがする必要がどのような

関連する問題