我想换行并在UITableViewCell
中换行。仅在指定字符[;]
// the code im using is
loadLbl.numberOfLines=0;
loadLbl.lineBreakMode = NSLineBreakByWordWrapping;
但是,这并不能完全满足我的需求。
我只想在;;之后断行
答案 0 :(得分:1)
[Objective-C]
代码:
NSString *text = @"text;with;string";
NSString *newText = [text stringByReplacingOccurrencesOfString:@";" withString:@";\n"];
结果:
text;
with;
string