一区二区三区欧美日韩-一区二区三区欧美-一区二区三区免费在线视频-一区二区三区免费在线观看-久久精品店-久久精品第一页

歡迎您光臨深圳塔燈網(wǎng)絡(luò)科技有限公司!
電話圖標(biāo) 余先生:13699882642

網(wǎng)站百科

為您解碼網(wǎng)站建設(shè)的點(diǎn)點(diǎn)滴滴

Flutter注冊iOS推送

發(fā)表日期:2018-11 文章編輯:小燈 瀏覽次數(shù):3124

在進(jìn)行iOS上開發(fā),發(fā)現(xiàn)Flutter創(chuàng)建的項(xiàng)目不走didRegisterForRemoteNotificationsWithDeviceToken,起初以為是沒有設(shè)置UNUserNotificationCenterDelegate,后來發(fā)現(xiàn)AppDelegate是繼承于FlutterAppDelegate的,


也就是將原生的UIApplicationDelegate的方法都會被FlutterAppDelegate攔截,即使我們不實(shí)現(xiàn)didRegisterForRemoteNotificationsWithDeviceToken,我覺得應(yīng)該有兩種方法可以實(shí)現(xiàn):第一種是需要重寫父類的推送方法。第二種就是在dart文件中監(jiān)聽系統(tǒng)代理,通過通道回調(diào)appdelegate來實(shí)現(xiàn),

下面是百度云推送,重寫父類代理的實(shí)現(xiàn):

在didFinishLaunchingWithOptions launchOptions: 中注冊原生交互channel


override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]? ) -> Bool {

? ? ? ? //Flutter Plugin插件注冊

? ? ? ? GeneratedPluginRegistrant.register(with: self);

? ? ? ? //調(diào)用appdelegate 的 設(shè)置、注冊遠(yuǎn)程推送

? ? ? ? self.requestAuthorization(application: application);

? ? ? ? //Flutter原生交互通道

? ? ? ? self.BPushChannel();

? ? ? ? //注冊BPush通道

? ? ? ? BPush.registerChannel(launchOptions, apiKey: BPushKey, pushMode: BPushMode.development, withFirstAction: "打開", withSecondAction: "關(guān)閉", withCategory: nil, useBehaviorTextInput: true, isDebug: true);

? ? ? ? //禁用地理位置信息推送

? ? ? ? BPush.disableLbs();

? ? ? ? return super.application(application, didFinishLaunchingWithOptions: launchOptions);

? ? }


? ? //MARK:注冊遠(yuǎn)程推送通知

? ? func requestAuthorization(application: UIApplication) {

? ? ? ? if #available(iOS 10.0, *) {

? ? ? ? ? ? UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate;

? ? ? ? ? ? UNUserNotificationCenter.current().requestAuthorization(options: [.badge, .sound, .alert]) { (granted, error) in

? ? ? ? ? ? ? ? if granted == true {

? ? ? ? ? ? ? ? ? ? DispatchQueue.main.async {

? ? ? ? ? ? ? ? ? ? ? ? application.registerForRemoteNotifications()

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? } else if #available(iOS 8.0, *) {

? ? ? ? ? ? let types:UIUserNotificationType = [.badge , .alert , .sound]

? ? ? ? ? ? let settings:UIUserNotificationSettings = UIUserNotificationSettings(types: types, categories: nil)

? ? ? ? ? ? application.registerUserNotificationSettings(settings)

? ? ? ? } else {

? ? ? ? ? ? let types:UIRemoteNotificationType = [UIRemoteNotificationType.alert, UIRemoteNotificationType.badge, .sound]

? ? ? ? ? ? application.registerForRemoteNotifications(matching: types)

? ? ? ? }

? ? }


? ? //百度推送通道

? ? func BPushChannel() -> Void {

? ? ? ? //獲取系統(tǒng)的跟控制器

? ? ? ? let controller = self.window.rootViewController

? ? ? ? //建立rootViewController和Flutter的通信通道

? ? ? ? let pushChannel = FlutterMethodChannel.init(name: channelNameForPush, binaryMessenger:controller as! FlutterBinaryMessenger)

? ? ? ? //設(shè)置Method回調(diào)?FlutterMethodCall包含了method的Name,ID等信息,?FlutterResult是給Native和Flutter的通信回調(diào)

????????pushChannel.setMethodCallHandler { (FlutterMethodCall, FlutterResult) in

? ? ? ? ? ? print("pushChannel");

? ? ? ? }

? ? ? ? //綁定channelId到服務(wù)器

? ? ? ? let pushBind = FlutterMethodChannel.init(name:channelNameForPushBind, binaryMessenger: controller as! FlutterBinaryMessenger)

? ? ? ? pushBind.setMethodCallHandler { (FlutterMethodCall, FlutterResult) in

? ? ? ? ? ? //FlutterResult();結(jié)果回調(diào),回調(diào)的結(jié)果只能為string類型

? ? ? ? ? ? if(self.channelId.isEmpty){

? ? ? ? ? ? ? ? FlutterResult(FlutterMethodNotImplemented);

? ? ? ? ? ? } else{

? ? ? ? ? ? ? ? print("channelId",self.channelId);

? ? ? ? ? ? ? ? let dic : Dictionary<String,String> = ["channelId":self.channelId];

? ? ? ? ? ? ? ? let data = try? JSONSerialization.data(withJSONObject: dic, options: [])

? ? ? ? ? ? ? ? let encodingStr = String(data: data!, encoding: String.Encoding.utf8)!

//將信息傳到Flutter,

? ? ? ? ? ? ? ? FlutterResult(encodingStr);

? ? ? ? ? ? }

? ? ? ? }

? ? }


? ? // 重寫遠(yuǎn)程推送通知 注冊成功

? ? override func application(_ application: UIApplication , didRegisterForRemoteNotificationsWithDeviceToken deviceToken:Data) {

? ? ? ? //? 向云推送注冊 device token

? ? ? ? print("deviceToken = %@", deviceToken);

? ? ? ? BPush.registerDeviceToken(deviceToken as Data)

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

? ? ? ? BPush.bindChannel(completeHandler: { (result, error) -> Void in

? ? ? ? ? ? if ((result) != nil){

? ? ? ? ? ? ? ? self.channelId = BPush.getChannelId();

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

? ? ? ? ? ? ? ? ? ? if ((result) != nil){

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? })

? ? ? ? ? ? }

? ? ? ? })

? ? ? ? super.application(application, didRegisterForRemoteNotificationsWithDeviceToken:deviceToken)

? ? }


// 重寫注冊失敗

? ? override func application(_ application: UIApplication , didFailToRegisterForRemoteNotificationsWithError error: Error ) {

? ? ? ? print("deviceToken = %@", error)

? ? ? ? super.application(application, didFailToRegisterForRemoteNotificationsWithError: error)

? ? }


**如果解決了你的問題,點(diǎn)個(gè)贊唄!**


本頁內(nèi)容由塔燈網(wǎng)絡(luò)科技有限公司通過網(wǎng)絡(luò)收集編輯所得,所有資料僅供用戶學(xué)習(xí)參考,本站不擁有所有權(quán),如您認(rèn)為本網(wǎng)頁中由涉嫌抄襲的內(nèi)容,請及時(shí)與我們聯(lián)系,并提供相關(guān)證據(jù),工作人員會在5工作日內(nèi)聯(lián)系您,一經(jīng)查實(shí),本站立刻刪除侵權(quán)內(nèi)容。本文鏈接:http://www.junxiaosheng.cn/17649.html
相關(guān)APP開發(fā)
 八年  行業(yè)經(jīng)驗(yàn)

多一份參考,總有益處

聯(lián)系深圳網(wǎng)站公司塔燈網(wǎng)絡(luò),免費(fèi)獲得網(wǎng)站建設(shè)方案及報(bào)價(jià)

咨詢相關(guān)問題或預(yù)約面談,可以通過以下方式與我們聯(lián)系

業(yè)務(wù)熱線:余經(jīng)理:13699882642

Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.    

主站蜘蛛池模板: 精品熟女少妇AV免费观看| 2020精品极品国产色在线| 乳色吐息在线观看全集免费观看 | 国产 交换 丝雨 巅峰| 国产视频精品免费| 日日噜噜噜夜夜爽爽狠狠图片| 伊人AV一区二区三区夜色撩人| 国产 交换 丝雨 巅峰| 欧美91精品久久久久网免费| 伊人成色综合人网| 国产性夜夜春夜夜爽1A片| 日本夜夜夜| chinesedaddy80老年人| 丝袜美女被艹| 98久久人妻无码精品系列蜜桃| 免费 高清 中文在线观看| 国产人妻麻豆蜜桃色精| 久久精品电影网| 一边啪啪的一边呻吟声口述 | 青青青青青青青草| x69老师x日本| 色欲档案之麻雀台上淫| 2021国产精品| 欧美精品一区二区三区视频| 把英语老师强奷到舒服动态图| 欧美大香线蕉线伊人久久| 扒开女人下面使劲桶视频| 日本电影免费久久精品| 国产不卡无码高清视频| 午夜向日葵高清在线观看| 果冻传媒2021一二三区| 日本阿v在线资源无码免费| 国产成人高清视频| 亚洲 日韩 色 图网站| 精品无码久久久久久动漫| 20岁αsrian男同志免费| 欧美 亚洲 日韩 中文2019| 超碰在线视频人人AV| 亚洲99精品A片久久久久久| 久久综合亚洲色hezyo| 超碰免费碰免费视频|