首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

数目字转字符串

2012-07-02 
数字转字符串NSString *newText [[NSString alloc] initWithFormat:@%d, number]numberLabel.text

数字转字符串

NSString *newText = [[NSString alloc] initWithFormat:@"%d", number];numberLabel.text = newText;[newText release];

?

热点排行