swift 百度云推送

證書的配置方面灭将,我就不多說了损同,嚴(yán)格按照SDK上的步驟粥脚,一步一步的認(rèn)認(rèn)真真的配置證書纵揍。

下面我來說一下在APPDelegate里面需要寫的代碼:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

//注冊(cè)服務(wù)器推送,請(qǐng)求用戶授權(quán)

let version:String = UIDevice.currentDevice().systemVersion

// iOS8 下需要使用新的 API

if (version as NSString).floatValue >= 8.0{

let Types = UIUserNotificationType([.Sound,.Alert, .Badge])

let settings = UIUserNotificationSettings(forTypes: Types, categories: nil)

application.registerUserNotificationSettings(settings)

}else{

let Types = UIRemoteNotificationType([.Sound,.Alert, .Badge])

application.registerForRemoteNotificationTypes(Types)

}

//放在登錄

if ( UIApplication.instancesRespondToSelector ( Selector ( "registerUserNotificationSettings:" ))) {

let Types = UIUserNotificationType([.Sound,.Alert, .Badge])

let settings = UIUserNotificationSettings(forTypes: Types, categories: nil)

application.registerUserNotificationSettings(settings)

} else {

let Types = UIRemoteNotificationType([.Sound,.Alert, .Badge])

application.registerForRemoteNotificationTypes(Types)

}

//#warning 測(cè)試 開發(fā)環(huán)境 時(shí)需要修改BPushMode為BPushModeDevelopment 需要修改Apikey為自己的Apikey

// 在 App 啟動(dòng)時(shí)注冊(cè)百度云推送服務(wù)垛玻,需要提供 Apikey

BPush.registerChannel(launchOptions, apiKey: "XXXXXXXXXXX", pushMode: BPushMode.Development, withFirstAction: nil, withSecondAction: nil, withCategory: nil, isDebug: true)

// App 是用戶點(diǎn)擊推送消息啟動(dòng)

if (launchOptions?[UIApplicationLaunchOptionsRemoteNotificationKey] != nil) {

let userInfo = launchOptions?[UIApplicationLaunchOptionsRemoteNotificationKey] as? NSDictionary

if ((userInfo) != nil) {

BPush.handleNotification(userInfo as! [NSObject : AnyObject])

}

}

//角標(biāo)清0

let shared = UIApplication.sharedApplication()

shared.applicationIconBadgeNumber = 0

//設(shè)置狀態(tài)欄的字體顏色模式

shared.statusBarStyle = UIStatusBarStyle.LightContent

self.window?.makeKeyAndVisible()

return true

}

// 遠(yuǎn)程推送通知 注冊(cè)成功

func application(application: UIApplication , didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData ) {

//? 向云推送注冊(cè) device token

BPush.registerDeviceToken(deviceToken)

// 綁定channel.將會(huì)在回調(diào)中看獲得channnelid appid userid 等

BPush.bindChannelWithCompleteHandler({ (result, error) -> Void in

let baiduUser = result["user_id"] as! String

let channelID = result["channel_id"] as! String

//? [self.viewController addLogString:[NSString stringWithFormat:@"Method: %@\n%@",BPushRequestMethodBind,result]];

// 需要在綁定成功后進(jìn)行 settag listtag deletetag unbind 操作否則會(huì)失敗

if ((result) != nil){

BPush.setTag("Mytag", withCompleteHandler: { (result, error) -> Void in

if ((result) != nil){

}

})

}

})

}

// 當(dāng) DeviceToken 獲取失敗時(shí)割捅,系統(tǒng)會(huì)回調(diào)此方法

func application(application: UIApplication , didFailToRegisterForRemoteNotificationsWithError error: NSError ) {

if error.code == 3010 {

} else {

}

}

func application(application: UIApplication , didReceiveRemoteNotification userInfo: [ NSObject : AnyObject ]) {

// App 收到推送的通知

BPush.handleNotification(userInfo as [NSObject : AnyObject]!)

let notif? ? = userInfo as NSDictionary

let apsDic? = notif.objectForKey ( "aps" ) as! NSDictionary

let alertDic = apsDic.objectForKey ( "alert" ) as! String

// 應(yīng)用在前臺(tái) 或者后臺(tái)開啟狀態(tài)下,不跳轉(zhuǎn)頁(yè)面帚桩,讓用戶選擇亿驾。

if (application.applicationState == UIApplicationState.Active || application.applicationState == UIApplicationState.Background) {

let alertView = UIAlertView (title: "收到一條消息", message: alertDic, delegate: nil , cancelButtonTitle: " 取消 ",otherButtonTitles:"確定")

alertView.show ()

}

else//殺死狀態(tài)下,直接跳轉(zhuǎn)到跳轉(zhuǎn)頁(yè)面账嚎。

{

let sb = UIStoryboard(name: "Main", bundle: nil)

let vc = sb.instantiateViewControllerWithIdentifier("finish")

// 根視圖是普通的viewctr 用present跳轉(zhuǎn)

let tabBarCtr = self.window?.rootViewController

tabBarCtr?.presentViewController(vc, animated: true, completion: nil)

}

}

// 此方法是 用戶點(diǎn)擊了通知莫瞬,應(yīng)用在前臺(tái) 或者開啟后臺(tái)并且應(yīng)用在后臺(tái) 時(shí)調(diào)起

func application(application: UIApplication , didReceiveRemoteNotification userInfo: [ NSObject : AnyObject ], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult ) -> Void ) {

let notif? ? = userInfo as NSDictionary

let apsDic? = notif.objectForKey ( "aps" ) as! NSDictionary

let alertDic = apsDic.objectForKey ( "alert" ) as! String

// 應(yīng)用在前臺(tái) 或者后臺(tái)開啟狀態(tài)下,不跳轉(zhuǎn)頁(yè)面郭蕉,讓用戶選擇疼邀。

if (application.applicationState == UIApplicationState.Active || application.applicationState == UIApplicationState.Background) {

let alertView = UIAlertView (title: "收到一條消息", message: alertDic, delegate: nil , cancelButtonTitle: " 取消 ",otherButtonTitles:"確定")

alertView.show ()

}

else//殺死狀態(tài)下,直接跳轉(zhuǎn)到跳轉(zhuǎn)頁(yè)面召锈。

{

let sb = UIStoryboard(name: "Main", bundle: nil)

let vc = sb.instantiateViewControllerWithIdentifier("finish")

// 根視圖是普通的viewctr 用present跳轉(zhuǎn)

let tabBarCtr = self.window?.rootViewController

tabBarCtr?.presentViewController(vc, animated: true, completion: nil)

}

}


// 注冊(cè)通知 alert 旁振、 sound 、 badge ( 8.0 之后烟勋,必須要添加下面這段代碼规求,否則注冊(cè)失敗)

func application(application: UIApplication , didRegisterUserNotificationSettings notificationSettings: UIUserNotificationSettings ) {

application.registerForRemoteNotifications ()

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末卵惦,一起剝皮案震驚了整個(gè)濱河市阻肿,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌沮尿,老刑警劉巖丛塌,帶你破解...
    沈念sama閱讀 212,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件较解,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡赴邻,警方通過查閱死者的電腦和手機(jī)印衔,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來姥敛,“玉大人奸焙,你說我怎么就攤上這事⊥玻” “怎么了与帆?”我有些...
    開封第一講書人閱讀 158,369評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)墨榄。 經(jīng)常有香客問我玄糟,道長(zhǎng),這世上最難降的妖魔是什么袄秩? 我笑而不...
    開封第一講書人閱讀 56,799評(píng)論 1 285
  • 正文 為了忘掉前任阵翎,我火速辦了婚禮,結(jié)果婚禮上之剧,老公的妹妹穿的比我還像新娘郭卫。我一直安慰自己,他們只是感情好猪狈,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評(píng)論 6 386
  • 文/花漫 我一把揭開白布箱沦。 她就那樣靜靜地躺著,像睡著了一般雇庙。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上灶伊,一...
    開封第一講書人閱讀 50,096評(píng)論 1 291
  • 那天疆前,我揣著相機(jī)與錄音,去河邊找鬼聘萨。 笑死竹椒,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的米辐。 我是一名探鬼主播胸完,決...
    沈念sama閱讀 39,159評(píng)論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼翘贮!你這毒婦竟也來了赊窥?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,917評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤狸页,失蹤者是張志新(化名)和其女友劉穎锨能,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,360評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡址遇,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評(píng)論 2 327
  • 正文 我和宋清朗相戀三年熄阻,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片倔约。...
    茶點(diǎn)故事閱讀 38,814評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡秃殉,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出浸剩,到底是詐尸還是另有隱情复濒,我是刑警寧澤,帶...
    沈念sama閱讀 34,509評(píng)論 4 334
  • 正文 年R本政府宣布乒省,位于F島的核電站巧颈,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏袖扛。R本人自食惡果不足惜砸泛,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評(píng)論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望蛆封。 院中可真熱鬧唇礁,春花似錦、人聲如沸惨篱。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽砸讳。三九已至琢融,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間簿寂,已是汗流浹背漾抬。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評(píng)論 1 267
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留常遂,地道東北人纳令。 一個(gè)月前我還...
    沈念sama閱讀 46,641評(píng)論 2 362
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像克胳,于是被迫代替她去往敵國(guó)和親平绩。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容