国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

Unity3D使用自帶的LocalNotification推送后,Icon上的Badge Number數(shù)量消除不掉

2019-11-09 15:43:27
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本地推送我是這樣寫的:

LocalNotification localNotification = new LocalNotification();			localNotification.fireDate = newDate;			localNotification.alertBody = message;			localNotification.applicationIconBadgeNumber = 1;			localNotification.hasAction = true;			localNotification.alertAction = "SlotGame1";			if (isRepeatDay){				localNotification.repeatCalendar = UnityEngine.iOS.CalendarIdentifier.ISO8601Calendar;				localNotification.repeatInterval = UnityEngine.iOS.CalendarUnit.Day;			}			localNotification.soundName = LocalNotification.defaultSoundName;			NotificationServices.ScheduleLocalNotification(localNotification);然后是得到推送后點(diǎn)進(jìn)去再退出來(lái)的時(shí)候,發(fā)現(xiàn)圖標(biāo)上的Badge數(shù)量還是依然存在:

開始是按照雨松大神的寫的:

LocalNotification l = new LocalNotification();		l.applicationIconBadgeNumber = -1;		NotificationServices.PResentLocalNotificationNow(l);		NotificationServices.CancelAllLocalNotifications();		NotificationServices.ClearLocalNotifications();完了之后并沒(méi)有效果,BadgeNumber還是存在,后面在網(wǎng)上找到另一人寫的方法,只需要將上面的代碼添加一句話

LocalNotification l = new LocalNotification();		l.applicationIconBadgeNumber = -1;		l.hasAction = false;		NotificationServices.PresentLocalNotificationNow(l);		NotificationServices.CancelAllLocalNotifications();		NotificationServices.ClearLocalNotifications();主要是添加了hasAction,但是我在實(shí)際測(cè)試的時(shí)候,偶爾還是會(huì)出現(xiàn)不消失的問(wèn)題

多次試了之后發(fā)現(xiàn)就是有一定延遲,于是在原來(lái)的基礎(chǔ)上加上一個(gè)協(xié)程,在PresentLocalNotificationNow之后等一段時(shí)間再clear和cancel

IEnumerator CleanNotification(){		#if UNITY_ipHONE		LocalNotification l = new LocalNotification();		l.applicationIconBadgeNumber = -1;		l.hasAction = false;		NotificationServices.PresentLocalNotificationNow(l);		yield return new WaitForSeconds(0.2f);		NotificationServices.CancelAllLocalNotifications();		NotificationServices.ClearLocalNotifications();		#endif	}


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 灵台县| 瑞丽市| 台前县| 甘肃省| 屯门区| 曲周县| 兴国县| 小金县| 陵川县| 洛宁县| 专栏| 徐汇区| 谢通门县| 界首市| 奉节县| 社旗县| 义马市| 昌图县| 辽中县| 阳泉市| 安丘市| 芮城县| 交城县| 三亚市| 高淳县| 陕西省| 通河县| 武威市| 东山县| 兴仁县| 五峰| 黑龙江省| 崇阳县| 苍溪县| 清镇市| 奉化市| 瓮安县| 东城区| 林州市| 西昌市| 西乌|