如何在iOS中仅在指定字符(在我的情况下为“;”)之后换行并换行

时间:2019-05-16 13:15:33

标签: ios objective-c uilabel newline line-breaks

我想换行并在UITableViewCell中换行。仅在指定字符[;]

之后
   // the code im using is
   loadLbl.numberOfLines=0;
   loadLbl.lineBreakMode = NSLineBreakByWordWrapping;

但是,这并不能完全满足我的需求。

我只想在;;之后断行

1 个答案:

答案 0 :(得分:1)

[Objective-C]

使用replace method

代码:

NSString *text = @"text;with;string";
NSString *newText = [text stringByReplacingOccurrencesOfString:@";" withString:@";\n"];

结果:

text;
with;
string