我正在尝试使用描述方法。我会在字符串中划线以换行。但是/n
,/r
不工作。
这是我的代码:
- (NSString *)description
{
return [NSString stringWithFormat:@"some text: \r some more text - %@",@"more text"];
}
我试过这个:
- (NSString *)description
{
return [NSString stringWithFormat:@"some text: \n some more text - %@",@"more text"];
}