我有一个NSString
这样的
NSString *string = @"textTextTextTextText<br>textTextTextText<br>TextTextText"
我想将此设置NSString
为 my 的文本,并在字符串上找到的UICell
每个标签上都有一个新行。
我怎么能那样做?
我试过这个,没有成功:
cell.textLabel.text = [[text componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]] componentsJoinedByString:@"<br>"];