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

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

UILocalNotification本地通知

2019-11-14 20:43:09
字體:
供稿:網(wǎng)友

// 執(zhí)行通知一定要退出應(yīng)用或掛起應(yīng)用(進(jìn)入后臺(tái))才能收到通知

// 創(chuàng)建本地通知

UILocalNotification *notification = [[UILocalNotification alloc] init];

// 通知觸發(fā)時(shí)間

// 5秒鐘之后觸發(fā)notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:5];

// 通知時(shí)區(qū)

// 使用本地時(shí)區(qū)notification.timeZone = [NSTimeZone defaultTimeZone];

// 通知提示內(nèi)容

notification.alertBody = @"頂部提示內(nèi)容,您有有一個(gè)通知";

// 通知提示音

//使用默認(rèn)的通知提示音notification.soundName = UILocalNotificationDefaultSoundName;

// 應(yīng)用程序右上角顯示的數(shù)字

notification.applicationIconBadgeNumber = 1;

// 數(shù)據(jù)字典

notification.userInfo = @{@"userName": @"小明", @"age": @(18)};

// 啟動(dòng)這個(gè)通知

[[UIApplication sharedApplication] scheduleLocalNotification:notification];

// 進(jìn)入前臺(tái),清除右上角圖標(biāo)

- (void)applicationWillEnterForeground:(UIApplication *)application{    [application setApplicationIconBadgeNumber:0];}

// 點(diǎn)頂端通知進(jìn)入應(yīng)用

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification{    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"標(biāo)題" message:notification.userInfo[@"userName"] delegate:nil cancelButtonTitle:@"確定" otherButtonTitles:nil];    [alert show];}

 // 清除當(dāng)前應(yīng)用所有通知

[[UIApplication sharedApplication] cancelAllLocalNotifications];

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 沛县| 汉沽区| 固始县| 河东区| 济阳县| 景泰县| 新巴尔虎左旗| 磴口县| 平泉县| 迭部县| 鲁山县| 建德市| 石泉县| 宿州市| 曲麻莱县| 博罗县| 克拉玛依市| 博乐市| 吴江市| 上犹县| 花莲市| 台东县| 广河县| 安康市| 阳山县| 萨嘎县| 蒙自县| 宣汉县| 虞城县| 高雄市| 普宁市| 津南区| 中江县| 阿尔山市| 宁远县| 嘉荫县| 行唐县| 汕头市| 岳阳市| 洛宁县| 华容县|