NSData to [Uint8] in Swift

后端 未结 7 817
无人及你
无人及你 2020-12-04 17:24

I couldn\'t find a solution to this problem in Swift (all of them are Objective-C, and they deal with pointers which I don\'t think exist in Swift in the same form). Is ther

7条回答
  •  忘掉有多难
    2020-12-04 17:55

    You can avoid first initialising the array to placeholder values, if you go through pointers in a slightly convoluted manner, or via the new Array constructor introduced in Swift 3:

    Swift 3

    let data = "foo".data(using: .utf8)!
    
    // new constructor:
    let array = [UInt8](data)
    
    // …or old style through pointers:
    let array = data.withUnsafeBytes {
        [UInt8](UnsafeBufferPointer(start: $0, count: data.count))
    }
    

    Swift 2

    Array(UnsafeBufferPointer(start: UnsafePointer(data.bytes), count: data.length))
    

提交回复
热议问题