본문 바로가기

나의 플랫폼/iOS

[iOS][Swift] Swift에서 DeviceToken 얻기

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

    var token: String = ""
    for i in 0..<deviceToken.count {
        token += String(format: "%02.2hhx", deviceToken[i] as CVarArg)
    }

    print(token)
}


https://stackoverflow.com/a/24979958



Mac 에서 Easy APNs Provider 을 이용하면 된다.

아주 쉽게 할 수 있다.