使用Objective-C在iOS警报消息中添加换行符

时间:2011-11-10 01:41:19

标签: objective-c ios ios5 uialertview

一个菜鸟问题。

我有警告:

"alertMessage" = "This is my message:    1  2  3.  And another one: 5 6 7";
我正在展示的

NSString *asd = NSLocalizedString (@"alertMessage", @"");
NSString *alertTitle = NSLocalizedString (@"alertTitle", @"");

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:alertTitle message:asd delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];

如何实现换行符,以及“另一个:”从第二行开始。

谢谢你!

2 个答案:

答案 0 :(得分:59)

在邮件中添加换行符(\ n)。

答案 1 :(得分:10)

在字符串文字中添加 \和

More details here