↧
Answer by arts for How to Break the line and make new line only after...
[Objective-C] Use replace method Code: NSString *text = @"text;with;string"; NSString *newText = [text stringByReplacingOccurrencesOfString:@";" withString:@";\n"]; Result: text; with; string
View ArticleHow to Break the line and make new line only after specified character ( ";"...
I want to break the line and make a new line in UITableViewCell. That too only after specified character [;] // the code im using is loadLbl.numberOfLines=0; loadLbl.lineBreakMode =...
View Article