国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 白城市| 县级市| 平凉市| 都昌县| 乡城县| 黎川县| 德昌县| 沾益县| 田林县| 冕宁县| 富阳市| 西畴县| 宁国市| 霸州市| 旬邑县| 安丘市| 昌平区| 临武县| 读书| 桃源县| 靖州| 蛟河市| 昆明市| 洛隆县| 楚雄市| 定安县| 龙里县| 简阳市| 泾川县| 康平县| 陈巴尔虎旗| 乐至县| 平湖市| 诸暨市| 甘泉县| 丹东市| 浦城县| 台山市| 皋兰县| 酒泉市| 祁连县|