iOS開發(fā) swift -- JPush極光推送的使用

一 APNS推送機制

1笆制、 官方解釋如下圖


推送.jpg
圖中鞋屈,Provider是指某個iPhone軟件的Push服務(wù)器。

APNS 是Apple Push Notification Service(Apple Push服務(wù)器)的縮寫稠屠,是蘋果的服務(wù)器只盹。
上圖可以分為三個階段。
第一階段:服務(wù)器把要發(fā)送的消息驼侠、目的iPhone的標(biāo)識打包姿鸿,發(fā)給APNS。
第二階段:APNS在自身的已注冊Push服務(wù)的iPhone列表中倒源,查找有相應(yīng)標(biāo)識的iPhone苛预,并把消息發(fā)到iPhone。
第三階段:iPhone把發(fā)來的消息傳遞給相應(yīng)的應(yīng)用程序笋熬, 并且按照設(shè)定彈出Push通知热某。

2、 詳細(xì)工作流程


推送.jpg
根據(jù)圖片我們可以概括一下:

a胳螟、應(yīng)用程序注冊APNS消息推送昔馋。
b、iOS從APNS Server獲取devicetoken糖耸,應(yīng)用程序接收device token秘遏。
c、應(yīng)用程序?qū)evice token發(fā)送給程序的PUSH服務(wù)端程序嘉竟。
d邦危、服務(wù)端程序向APNS服務(wù)發(fā)送消息洋侨。
e、APNS服務(wù)將消息發(fā)送給iPhone應(yīng)用程序倦蚪。

二 注冊證書

詳細(xì)步驟

三 SDK 集成 CocoaPods

$ cd/你的項目地址
$ open -e Podfile

target 'zanqian' do
  pod 'JPush', '~> 3.0.0'
 end

$ pod install

四 代碼示例

1希坚、基本配置

    //appdelegate.swift 遵循 JPUSHRegisterDelegate
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        // 極光
        if #available(iOS 10.0, *) {
            let entity = JPUSHRegisterEntity()
            entity.types = Int(UNAuthorizationOptions.alert.rawValue|UNAuthorizationOptions.badge.rawValue|UNAuthorizationOptions.sound.rawValue)
            JPUSHService.register(forRemoteNotificationConfig: entity, delegate: self)
        }else {
            let types = UIUserNotificationType.badge.rawValue |
            UIUserNotificationType.sound.rawValue |
            UIUserNotificationType.alert.rawValue
            JPUSHService.register(forRemoteNotificationTypes: types, categories: nil)
        }
        JPUSHService.setup(withOption: launchOptions, appKey: "", channel: "app store", apsForProduction: false)

        // 獲取遠(yuǎn)程推送消息 iOS 10 已取消
        let remote = launchOptions?[UIApplicationLaunchOptionsKey.remoteNotification] as? Dictionary<String,Any>;
        // 如果remote不為空,就代表應(yīng)用在未打開的時候收到了推送消息
        if remote != nil {
            // 收到推送消息實現(xiàn)的方法 
           }

         //自定義消息 需要自己在receiveNotification中自己實現(xiàn)消息的展示
         NotificationCenter.default.addObserver(self, selector: #selector(receiveNotification(notification:)), name: NSNotification.Name.jpfNetworkDidReceiveMessage, object: nil)
    }

    //注冊APNs成功并上報DeviceToken
    func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
        JPUSHService.registerDeviceToken(deviceToken)
    }

    func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
        debugPrint("極光注冊失敗",error.localizedDescription)
    }

2审丘、代理回調(diào)

    // 接收到消息回調(diào)方法
    @available(iOS 10.0, *)
    func jpushNotificationCenter(_ center: UNUserNotificationCenter!, willPresent notification: UNNotification!, withCompletionHandler completionHandler: ((Int) -> Void)!) {
        let userInfo = notification.request.content.userInfo
        if notification.request.trigger is UNPushNotificationTrigger {
            JPUSHService.handleRemoteNotification(userInfo)
        }else {
            //本地通知
        }
        //需要執(zhí)行這個方法吏够,選擇是否提醒用戶,有Badge滩报、Sound锅知、Alert三種類型可以選擇設(shè)置
        completionHandler(Int(UNNotificationPresentationOptions.alert.rawValue))
    }
    
    @available(iOS 10.0, *)
    func jpushNotificationCenter(_ center: UNUserNotificationCenter!, didReceive response: UNNotificationResponse!, withCompletionHandler completionHandler: (() -> Void)!) {
        let userInfo = response.notification.request.content.userInfo
        if response.notification.request.trigger is UNPushNotificationTrigger {
            JPUSHService.handleRemoteNotification(userInfo)
        }else {
            //本地通知
        }
        //處理通知 跳到指定界面等等
        receivePush(userInfo as! Dictionary<String, Any>)
        completionHandler()
    }

    // iOS 9.0 
    func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
        JPUSHService.handleRemoteNotification(userInfo);
        completionHandler(UIBackgroundFetchResult.newData);
    }

3、推送處理

    func receivePush(_ userInfo : Dictionary<String,Any>) {
        //根據(jù)服務(wù)器返回的字段判斷
        let userInfo = userInfo["key"] as! String
        let jsonData:Data = userInfo.data(using: .utf8)!
        var dict = try! JSONSerialization.jsonObject(with: jsonData, options: .allowFragments) as! [String:AnyObject]
        let messageJson = JSON(dict ["data"]!)
        let message = Message.init(json: messageJson)
        if message.type == 2
        {
            let rootView = getRootViewController()
            rootView.pushViewController(MessageViewController.init(type: 2), animated: true)
        }
        // 角標(biāo)變0
        UIApplication.shared.applicationIconBadgeNumber = 0
    }


    //獲取當(dāng)前頁面的是控制器
    func getRootViewController () ->(UINavigationController)
    {
        let rootViewController = UIApplication.shared.keyWindow?.rootViewController
        if (rootViewController?.isKind(of: TabBarViewController.self))!
        {
            //let firstController = rootViewController?.childViewControllers[tabBarController.selectedIndex]
            let firstController = tabBarController.selectedViewController
            if (firstController?.isKind(of: UINavigationController.self))! {
                return firstController as! UINavigationController
            }else
            {
                return UINavigationController.init(rootViewController: firstController!)
            }
        }else if (rootViewController?.isKind(of: UINavigationController.self))!
        {
            return rootViewController as! UINavigationController
        }
        
        return UINavigationController.init(rootViewController: rootViewController!)
    }

    func applicationDidBecomeActive(_ application: UIApplication) {
      //角標(biāo)至0
      UIApplication.shared.applicationIconBadgeNumber = 0
    }

如有不妥脓钾,請多多指教售睹。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市可训,隨后出現(xiàn)的幾起案子昌妹,更是在濱河造成了極大的恐慌,老刑警劉巖握截,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件飞崖,死亡現(xiàn)場離奇詭異,居然都是意外死亡谨胞,警方通過查閱死者的電腦和手機固歪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來胯努,“玉大人牢裳,你說我怎么就攤上這事∫杜妫” “怎么了蒲讯?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長灰署。 經(jīng)常有香客問我判帮,道長,這世上最難降的妖魔是什么氓侧? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任脊另,我火速辦了婚禮,結(jié)果婚禮上约巷,老公的妹妹穿的比我還像新娘偎痛。我一直安慰自己,他們只是感情好独郎,可當(dāng)我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布踩麦。 她就那樣靜靜地躺著枚赡,像睡著了一般。 火紅的嫁衣襯著肌膚如雪谓谦。 梳的紋絲不亂的頭發(fā)上贫橙,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天,我揣著相機與錄音反粥,去河邊找鬼卢肃。 笑死,一個胖子當(dāng)著我的面吹牛才顿,可吹牛的內(nèi)容都是我干的莫湘。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼郑气,長吁一口氣:“原來是場噩夢啊……” “哼幅垮!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起尾组,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤忙芒,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后讳侨,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體呵萨,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年跨跨,在試婚紗的時候發(fā)現(xiàn)自己被綠了甘桑。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡歹叮,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出铆帽,到底是詐尸還是另有隱情咆耿,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布爹橱,位于F島的核電站萨螺,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏愧驱。R本人自食惡果不足惜慰技,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望组砚。 院中可真熱鬧吻商,春花似錦、人聲如沸糟红。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至柒爸,卻和暖如春准浴,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背捎稚。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工乐横, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人今野。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓葡公,卻偏偏與公主長得像,于是被迫代替她去往敵國和親腥泥。 傳聞我的和親對象是個殘疾皇子匾南,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,697評論 2 351

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