how can i limit the number of characters in a label
You can truncate the text with an ellipsis automatically by setting the frame of the UILabel.
frame
UILabel
NSInteger newSize = 10; label.frame = CGRectMake(label.frame.origin.x, label.frame.origin.y, label.frame.size.height, newSize);