码迷,mamicode.com
首页 > 其他好文 > 详细

Objective-C 字符串与数值互相转换

时间:2014-08-13 10:17:15      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   cti   div   log   on   

Convert NSString to int

 

NSString *aNumberString = @"123";
int i = [aNumberString intValue];

 

 Convert int to NSString

int aNumber = 123;
NSString *aString = [NSString stringWithFormat:@"%d", aNumber];

 

Objective-C 字符串与数值互相转换,布布扣,bubuko.com

Objective-C 字符串与数值互相转换

标签:style   blog   color   for   cti   div   log   on   

原文地址:http://www.cnblogs.com/savagemorgan/p/3909263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!