如何在 Objective-C 中将字符串转换为整数? [复制]
Posted
技术标签:
【中文标题】如何在 Objective-C 中将字符串转换为整数? [复制]【英文标题】:How can I convert a string to an integer in Objective-C? [duplicate] 【发布时间】:2012-12-08 05:32:53 【问题描述】:可能重复:How to do string conversions in Objective-C?
如何在 Objective-C 中将字符串转换为整数?
【问题讨论】:
【参考方案1】:int value = [string intValue];
【讨论】:
【参考方案2】:NSInteger value=[string integerValue];
【讨论】:
以上是关于如何在 Objective-C 中将字符串转换为整数? [复制]的主要内容,如果未能解决你的问题,请参考以下文章