Three ways to convert NSData to a byte array in swift

Source: Internet
Author: User

Recently doing iOS development requires reading data from a nsdata. However, the relevant document could not be found. Online search also someone asked, I see there are objective-c answers, but basically there is no swift solution.

NSData's Bytes is the unsafepointer<void> type, I don't know how to get his value directly (if you know, please tell me).

So I groped myself for the method of converting NSData to [Byte], hoping to play a role.

The following is demonstrated directly in playground:

Finally, I used the third method, of course:

Import Foundationvar B:[byte] = [13,0xf1,0x20]var D = NSData (bytes:b, Length:3)//Save the value of NSData in ByteArray var bytearray:[by TE] = [Byte] () for I in 0..<3 {    var temp:byte = 0    d.getbytes (&temp, Range:nsrange (location:i,length:1)) 
  bytearray.append (temp)}

Three ways to convert NSData to a byte array in swift

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.