文本中的Nslog数据?

时间:2012-01-06 03:36:02

标签: objective-c

如何将来自NSlogs的数据放在以下内容中:

[tweetSheet setInitialText:@"I just scored xx 'touches'"];

的NSLog;

NSLog(@"Game over score: %i",counter);

输出;

2012-01-06 04:27:00.296 [317:707] Game over score: **31**

31 我希望第一个代码行中的xx。

2 个答案:

答案 0 :(得分:4)

使用NSString的{​​{1}}方法:

-stringWithFormat:

答案 1 :(得分:1)

[tweetSheet setInitialText:[NSString stringWithFormat:"I just scored %d 'touches'", counter]];