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

NSString之Format

时间:2016-03-02 19:57:19      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

// 不但可以通过占位符来对字符串进行连续定义

        unichar ch = ‘Y‘;

        NSLog(@"%@", [NSString stringWithFormat:@"%c", ch]); //还可以对变量内数据进行Format操作

        color = [NSString stringWithFormat:@"Red under is %@,location = %d",@"Orange",2];

        NSLog(@"占位符自定义:%@",color);

 

NSString之Format

标签:

原文地址:http://www.cnblogs.com/pruple/p/5235932.html

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