本地通知(Local Notifications)
基于类库: MonoTouch.UIKit
使用方法:
UILocalNotification alarm = new UILocalNotification ();
alarm.FireDate = DateTime.Now;
alarm.TimeZone = NSTimeZone.DefaultTimeZone;
alarm.RepeatInterval = 0;
alarm.AlertBody = "alarm content";
alarm.SoundName = "music.mp3";
UIApplication.SharedApplication.ScheduleLocalNotification(alarm);
浙公网安备 33010602011771号