, , .
, UILabel :
label.numberOfLines = 0;
label.lineBreakMode = NSLineBreakByWordWrapping;
, UILabel , . , (NSString):
NSString *text = @"YourText";
CGFloat your70Width;
CGSize constraintSize = CGSizeMake(your70Width, MAXFLOAT);
UIFont *yourLabelFont;
CGRect requiredFrame = [text boundingRectWithSize:constraintSize options:NSStringDrawingUsesFontLeading attributes:@{NSFontAttributeName:yourLabelFont} context:nil];
CGRect oldLabelFrame = label.frame;
label.frame = CGRectMake(oldLabelFrame.origin.x, oldLabelFrame.origin.y, requiredFrame.size.width, requiredFrame.size.height);
.