1

我正在尝试使用描述方法。我会在字符串中划线以换行。但是/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"];
} 
4

1 回答 1

1

您尝试过的方法应该确实有效。由于它不适用于您的情况,您可以试试这个:

[[NSString stringWithFormat:@"some text: \r\n some more text - %@",@"more text"] isHTML:YES];

应该管用 。

于 2013-03-10T10:19:08.160 回答