I am trying to find the number of characters that a UILabel can hold.I am using
lbl_Text = [[UILabel alloc]initWithFrame:CGRectMake(0,15,290,320)];
lbl_Text.lineBreakMode = UILineBreakModeWordWrap;
lbl_Text.numberOfLines = 20;
lbl_Text.font = [UIFont fontWithName:@"Helvetica-Bold" size:14];
to set the font and font size. Can anyone find the number of characters that this UILabel can Hold ?