web-dev-qa-db-ja.com

SwiftのNSDictionaryからNSDataおよびNSDataからNSDictionary

辞書またはデータオブジェクト、あるいはその両方を誤って使用しているかどうかはわかりません。 Swiftへの切り替えに慣れようとしていますが、少し問題があります。

var dictionaryExample : [String:AnyObject] =
    ["user":"UserName",
     "pass":"password",
    "token":"0123456789",
    "image":0] // image should be either NSData or empty

let dataExample : NSData = dictionaryExample as NSData

NSDictionaryオブジェクトにエンコードし、そのNSDataオブジェクトを取得してNSDataにデコードするには、NSDictionaryが必要です。

どんな助けも大歓迎です、ありがとう。

50
IanTimmis

NSKeyedArchiverおよびNSKeyedUnarchiverを使用できます

Swift 2.0+の例

var dictionaryExample : [String:AnyObject] = ["user":"UserName", "pass":"password", "token":"0123456789", "image":0]
let dataExample : NSData = NSKeyedArchiver.archivedDataWithRootObject(dictionaryExample)
let dictionary:NSDictionary? = NSKeyedUnarchiver.unarchiveObjectWithData(dataExample)! as? NSDictionary

Swift3.0

let dataExample: Data = NSKeyedArchiver.archivedData(withRootObject: dictionaryExample)
let dictionary: Dictionary? = NSKeyedUnarchiver.unarchiveObject(with: dataExample) as! [String : Any]

遊び場のスクリーンショット

enter image description here

109
Leo

NSPropertyListSerializationは代替ソリューションかもしれません。

// Swift Dictionary To Data.
var data = try NSPropertyListSerialization.dataWithPropertyList(dictionaryExample, format: NSPropertyListFormat.BinaryFormat_v1_0, options: 0)

// Data to Swift Dictionary
var dicFromData = (try NSPropertyListSerialization.propertyListWithData(data, options: NSPropertyListReadOptions.Immutable, format: nil)) as! Dictionary<String, AnyObject>
9
yuyeqingshan

Swift 3の場合:

let data = try PropertyListSerialization.data(fromPropertyList: authResponse, format: PropertyListSerialization.PropertyListFormat.binary, options: 0)
3
ingconti

レオの答えNSDataDataと同じではないため、ビルド時エラーが発生しました。関数unarchiveObject(with:)Data型の変数を受け取りますが、関数unarchiveTopLevelObjectWithData()NSData型の変数を受け取ります。

これは実用的なSwift 3答えです:

var names : NSDictionary = ["name":["John Smith"], "age": 35]
let namesData : NSData = NSKeyedArchiver.archivedData(withRootObject: names) as NSData
do{
    let backToNames = try NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(namesData) as! NSDictionary
    print(backToNames)
}catch{
    print("Unable to successfully convert NSData to NSDictionary")
}
3
Ujjwal-Nadhani