iOS的推送通知分为本地推送和网络推送两种,如果App处于挂起状态,是可以发送本地通知的,如果已经被杀掉,则只有定时通知可以被执行,而类似于QQ的那种网络消息推送就无法实现了,因为App的网络模块在被杀掉后是无法执行的,这时候就要借助远程通知,通过苹果的服务器转发通知到手机,本文只介绍本地通知的用法。
①对于iOS8及以上的版本,需要注册本地通知才能使用,一般在AppDelegate中注册:
if ([[UIDevice currentDevice].systemVersion doubleValue] >= 8.0) { UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeSound categories:nil]; [application registerUserNotificationSettings:settings]; }
②发送一条通知,需要设置alertBody(消息体),fireDate(发送时间),soundName(提示音,一般填default)。
最后利用UIApplication单例调用scheduleLocalNotification方法发送通知:
UILocalNotification *localNoti = [[UILocalNotification alloc] init]; localNoti.alertBody = [NSString stringWithFormat:@"%@:%@",message.fromStr,message.body]; localNoti.fireDate = [NSDate date]; localNoti.soundName = @"default"; [[UIApplication sharedApplication] scheduleLocalNotification:localNoti];一般的通知都是在应用处于后台时才被发送,因此在发送之前应该判断是否后台,判断方法如下:
[UIApplication sharedApplication].applicationState != UIApplicationStateActive
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/xyt8023y/article/details/46917807