我在 UIAlertView 中添加新行时遇到了一些问题。Category.rusname 是 NSString,包含 "\n" 符号,类似于 "Phone1\n, Phone2]n"。但不是在“\n”位置添加换行符,而是用“\n”符号显示字符串。并且字符串显示没有必要的新行。有代码。
UIAlertView *alert = [[UIAlertView alloc] initWithTitle: category.rusname message:[NSString stringWithFormat:@"%@", category.message] delegate:nil cancelButtonTitle:@"Ок" otherButtonTitles: nil];
[alert show];
return;