将 NSString 转换为 NSInteger?
我想将 string
data
转换为 NSInteger
。
I want to convert string
data
to NSInteger
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想将 string
data
转换为 NSInteger
。
I want to convert string
data
to NSInteger
.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
如果字符串是人类可读的数字表示,您可以这样做:
If the string is a human readable representation of a number, you can do this:
[myString intValue]
返回一个 cType“int”[myString intValue]
返回一个NSInteger
。在大多数情况下,我确实通过查看 apples 类引用找到这些简单的函数,最快的方法是单击 [option] 按钮并双击类声明(在本例中为 NSString )。
[myString intValue]
returns a cType "int"[myString integerValue]
returns aNSInteger
.In most cases I do find these simple functions by looking at apples class references, quickest way to get there is click [option] button and double-click on the class declarations (in this case NSString ).
我发现这是正确的答案。
I've found this to be the proper answer.
这比integerValue更安全:
this is safer than integerValue: