NSString 和NSInteger的相互转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NSString 和NSInteger的相互转换相关的知识,希望对你有一定的参考价值。
NSInteger转化 NSString类型:
[NSString stringWithFormat: @"%d", NSInteger];
NSString转化 NSInteger类型:
NSInteger = [NSString intValue];
以上是关于NSString 和NSInteger的相互转换的主要内容,如果未能解决你的问题,请参考以下文章
Objective-C - NSInteger转换NSString
Objective-c 将 NSString 转换为 NSInteger
ARC 中不允许从 NSInteger 到 NSString 的隐式转换.. 应该使用啥解决方法来处理整数
如何在 iOS 中将 NSData 变量转换为 NSInteger 变量