本地推送UILocalNotification
摘要:
OS 4.0之后,我们就多了一种推送选择,即本地推送,可以减轻一些服务器的压力。今天和大家简单分享下iOS4里的本地推送。 1、增加一个本地推送//设置20秒之后 NSDate *date = [NSDate dateWithTimeIntervalSinceNow:20]; //创建一个本地推送 UILocalNotification *noti = [[[UILocalNotification alloc] init] autorelease]; if (noti) { //设置推送时间 noti.fireDate = date; ... 阅读全文
posted @ 2013-04-14 10:30
jack_yan
阅读(214)
评论(0)
推荐(0)
浙公网安备 33010602011771号