无法转换类型' NSData'的值预期参数类型'字符串'

时间:2016-06-01 12:39:08

标签: xcode string swift nsdata

我在XCode中使用swift编写代码。这是代码:

import UIKit
import Foundation

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?


    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        // Override point for customization after application launch.

        let notificationTypes : UIUserNotificationType = [.Alert, .Badge, .Sound]
        let notificationSettings : UIUserNotificationSettings = UIUserNotificationSettings(forTypes: notificationTypes, categories: nil)
        UIApplication.sharedApplication().registerUserNotificationSettings(notificationSettings)

        return true
    }

    func application(application: UIApplication, didRegisterUserNotificationSettings notificationSettings: UIUserNotificationSettings)
    {
        UIApplication.sharedApplication().registerForRemoteNotifications()
    }

    func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {

        print("TOKEN:", deviceToken);

        let token = String(data: deviceToken, encoding: NSUTF8StringEncoding);
        let myUrl = NSURL(fileURLWithPath: "http://......php?id=" + token);

        print("URL:",fileURLWithPath: "http://......php?id=" + token);

    }


    func application(application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: NSError) {
        print(error.localizedDescription)
    }

  /*  func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {

    }*/


    func applicationWillResignActive(application: UIApplication) {
        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
        // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
    }

    func applicationDidEnterBackground(application: UIApplication) {
        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    }

    func applicationWillEnterForeground(application: UIApplication) {
        // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
    }

    func applicationDidBecomeActive(application: UIApplication) {
        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    }

    func applicationWillTerminate(application: UIApplication) {
        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    }


}

编译器在func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {"上给出了错误并且它说我" Cannot convert value of type 'NSData' to expected argument type 'String'" ...但我无法理解解决问题的方法。那么,有人可以帮我纠正错误吗?

3 个答案:

答案 0 :(得分:2)

var charSet: NSCharacterSet = NSCharacterSet(charactersInString: "<>")
var tokenStr: String = (deviceToken.description as NSString)
            .stringByTrimmingCharactersInSet(characterSet)
            .stringByReplacingOccurrencesOfString( " ", withString: "") as String

print(deviceTokenString)

试试

答案 1 :(得分:1)

使用此功能,用于将令牌发送到服务器。为我工作好

    var token: String = "\(deviceToken)"
    let rawtoken = token.stringByReplacingOccurrencesOfString(">", withString: "")
    let cleantoken = rawtoken.stringByReplacingOccurrencesOfString("<", withString: "")
    var finaltoken = cleantoken.stringByReplacingOccurrencesOfString(" ", withString: "")

最终令牌是你应该使用的。

来源是Udemy在线课程。

答案 2 :(得分:-1)

请注意,令牌是BINARY,因此您无法轻松将其转换为字符串(无UTF8!)。 将它转换为十六进制是一个好习惯:

let tokenChars = UnsafePointer<CChar>(deviceToken.bytes)
var tokenString = ""

for var i = 0; i < deviceToken.length; i++ {
    tokenString += String(format: "%02.2hhx", arguments: [tokenChars[i]])
}

print("Push token: \(tokenString)")