其他分享
首页 > 其他分享> > IOS 推送

IOS 推送

作者:互联网

/*iOS9使用方法

}
*/

}

//远程推送APP在前台

/*

}
/
/

// 本地通知回调函数,当应用程序在前台时调用

// 这里真实需要处理交互的地方
// 获取通知所带的数据
NSString *notMess = [notification.userInfo objectForKey:@“aps”];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@“本地通知(前台)”
message:notMess
delegate:nil
cancelButtonTitle:@“OK”
otherButtonTitles:nil];
[alert show];

// 更新显示的徽章个数
NSInteger badge = [UIApplication sharedApplication].applicationIconBadgeNumber;
badge–;
badge = badge >= 0 ? badge : 0;
[UIApplication sharedApplication].applicationIconBadgeNumber = badge;

// 在不需要再推送时,可以取消推送
[FirstViewController cancelLocalNotificationWithKey:@“key”];

}

标签:identifier,action4,void,IOS,action2,application,推送,UIApplication
来源: https://blog.csdn.net/syzd451529064/article/details/99744529