将 bytearray 转换为 Objective-C 数据结构
可能的重复:
objective-c 中的字节数组
我将一些 Java 代码转换为 Objective-C 并已运行陷入一个我无法解决的问题:
public static final byte[] DATA_GENERIC = new byte[] { (byte)0xA0, 0x00, 0x00, 0x00, 0x03,
0x10, 0x10 };
有谁知道将上述内容转换为 Objective-C
Possible Duplicate:
Byte array in objective-c
Am converting some Java code to Objective-C and have run into an issue that I can't get my head around:
public static final byte[] DATA_GENERIC = new byte[] { (byte)0xA0, 0x00, 0x00, 0x00, 0x03,
0x10, 0x10 };
Does anyone know to convert the above into Objective-C
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是将数据放入
NSData
对象的示例。输出:
与 java 的一个主要区别是,在使用原始字符数组时,您需要自己跟踪字节数。创建
NSData
后,您就可以访问长度。Here is an example of getting your data into a
NSData
object.Output:
<a0000000 031010>
One major difference from java is you will need to keep track of the number of bytes yourself when working with a raw char array. Once you create the
NSData
you can access the length.