Line breaks not working in UILabel
问题 I'm loading some help text from a plist and displaying the same in the form of UILabels housed in a UIScrollView. Portion of the code follows: UILabel *sectionDetailLabel = [[[UILabel alloc] initWithFrame:CGRectMake(34, myOriginForThisSection, 286, 20)] autorelease]; sectionDetailLabel.backgroundColor = [UIColor clearColor]; sectionDetailLabel.numberOfLines = 0; sectionDetailLabel.font = [UIFont systemFontOfSize:12]; sectionDetailLabel.textColor = [UIColor blackColor]; sectionDetailLabel