有时候我们的APP需要根据角标在系统内提醒用户。比如APP处于关闭状态下,接收到通知,我们通过点击图标进入APP而不是点击通知进入APP的情况下。
在应用内提醒用户有新消息。
NSInteger numbe = [UIApplication sharedApplication].applicationIconBadgeNumber;
if (numbe > 0) {
[[NSNotificationCenter defaultCenter] postNotificationName:@"messageRedHiddenNO" object:nil];
//这儿是获取应用的角标数量,大于0 就在系统内提示用户。我这儿就是发一个通知。
}
网友评论