本地通知UILocalNotification

2022-03-16 00:57:01 字數 919 閱讀 3533

//傳送通知

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

if (notification!=nil) { 

nsdate *now=[nsdate new]; 

notification.firedate=[now datebyaddingtimeinterval:10];//

10秒後通知

notification.repeatinterval=0;//

迴圈次數,kcfcalendarunitweekday一周一次

應用的紅色數字 

notification.soundname= uilocalnotificationdefaultsoundname;//

聲音,可以換成alarm.soundname = @"mymusic.caf" 

//去掉下面2行就不會彈出提示框

notification.alertbody=@"

通知內容

";//

提示資訊 彈出提示框

notification.alertaction = @"

開啟";  //

提示框按鈕 

= no; 

//是否顯示額外的按鈕,為no時alertaction消失

//nsdictionary *infodict = [nsdictionary dictionarywithobject:@"somevalue" forkey:@"somekey"];

= infodict; 

//新增額外的資訊

取消通知

add the view controller's view to the window and display.

點選提示框的開啟

當程式還在後天執行

iOS本地通知

rt 本地通知 本地通知是uilocalnotification的例項,主要有三類屬性 對本地通知的數量限制,ios最多允許最近本地通知數量是64個,超過限制的本地通知將被ios忽略。如果就寫個簡單的定時提醒,是很簡單的,比如這樣 示例寫的很簡單,啟動應用後,就發出乙個定時通知,10秒後啟動。這時按...

iOS本地通知

本地通知由本應用負責呼叫,只能從當前裝置上得ios發出。本地通知適用於基於時間的程式,包括簡單的日曆程式或者to do列表型別的應用程式。本地通知是乙個uilocalnotification,它有如下屬性 每個應用程式最多只能傳送64個本地通知。如果系統發出通知時,應用程式處於前台執行,系統將會觸發...

ios本地通知

什麼時候需要推送跳轉 viewcontroller.m localnotification created by hq on 16 5 12.import viewcontroller.h inte ce viewcontroller ibaction sendnoty uibutton sende...