随笔 - 400,  文章 - 0,  评论 - 7,  阅读 - 21万

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import UIKit
import UserNotifications
 
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
     
    var window: UIWindow?
     
     
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
 
         
        if #available(iOS 10, *){
            iOS8Later()
            return true
        }
         
        if #available(iOS 8, *){
            iOS10Later()
            return true
        }
        early()
 
        return true
    }
     
     
    ///请求完成后会调用把获取的deviceToken返回给我们
    func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
         
        testStringToData()
         
        //deviceToken = 32 bytes
        print("deviceToken = \(deviceToken)")
         
        //FIXME:打印推送64位token
        print(deviceToken.map { String(format: "%02.2hhx", arguments: [$0]) }.joined() , "推送 deviceToken" )
    }
     
 
    func testStringToData(){
        let testStr = "莎莎哈"
        let testData = testStr.data(using: String.Encoding.utf8)
        let newTestStr = String(data: testData ?? Data(), encoding: String.Encoding.utf8)
        print("======", testStr, testData,  newTestStr)
    }
 
     
}
 
extension AppDelegate{
     
    func early(){
        let type = UIRemoteNotificationType.alert.rawValue | UIRemoteNotificationType.badge.rawValue | UIRemoteNotificationType.sound.rawValue
        UIApplication.shared.registerForRemoteNotifications(matching: UIRemoteNotificationType(rawValue: type))
    }
     
    func iOS8Later(){
        let type = UIUserNotificationType.badge.rawValue | UIUserNotificationType.alert.rawValue | UIUserNotificationType.sound.rawValue
        //请求授权
        let set = UIUserNotificationSettings(types: UIUserNotificationType(rawValue: type), categories: nil)
         
        UIApplication.shared.registerUserNotificationSettings(set)
         
        //需要通过设备UUID 和APP bundle ID 发送请求,获取deviceToken
        UIApplication.shared.registerForRemoteNotifications()
    }
     
    func iOS10Later(){
            let center = UNUserNotificationCenter.current()
            center.delegate = self
            center.requestAuthorization(options: UNAuthorizationOptions.alert) { (isSucceseed: Bool, error:Error?) in
                 
                if isSucceseed == true{
                    print( "成功")
                }else{
                    print( "失败")
                    print("error = \(error)")
                }
            }
            UIApplication.shared.registerForRemoteNotifications()
    }
}
 
extension AppDelegate: UNUserNotificationCenterDelegate{
     
}

  

Swift3.1的DeviceToken打印的是32Bytes
https://www.jianshu.com/p/fed585eef7c1

posted on   懂事长qingzZ  阅读(990)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示