我正在开发应用程序,当应用程序使用 AdHoc 配置文件运行时,我需要在其中获取设备 token 。
因为我无法使用 AdHoc 配置文件进行调试。我需要查看使用 println() 打印设备 token 的登录信息。
但是,我没有表现出任何东西。

最佳答案

最后,我得到了解决方案。
我们也可以使用 NSLog() 进入 swift 代码。所以,我们想在那里打印日志,你使用 NSLog() 函数。
例子 ,

 func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
        var deviceTokenOrigin = deviceToken.description.stringByTrimmingCharactersInSet(NSCharacterSet(charactersInString: "<>"))
        var deviceTokenFiltered = deviceTokenOrigin.stringByReplacingOccurrencesOfString(" ", withString: "")
        self.deviceTocken = deviceTokenFiltered
        NSLog("DeviceToken : %@", deviceTokenFiltered)
    }

关于ios - swift : println() doesn't show anything into "View Device Logs" in "Devices" tab,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31218200/

10-12 17:28