NSMutableData 到 Int
我调用了一个 URL,并在失败或成功时收到 0 或 1。我的数据位于 NSMutableData *data;目的。
我获取了数据,但现在想看看它是 1 还是 0。我该怎么做?我需要获取字节吗?
谢谢
I have a call to a URL and receive back a 0 or 1 on fail or success. I have my data in a NSMutableData *data; object.
I get the data, but now want to see if it's a 1 or 0. How do I do this? Do I need to get the bytes?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要首先将
NSData
转换为NSString
。然后,您可以使用NSString
上的intValue
方法将其转换为整数。例如:
You will need to convert the
NSData
to anNSString
first. Then you can use theintValue
method onNSString
to convert it to an integer.For example: