I can create a multi-line NSAttributedString by using escaped new-line characters (@\"\\n\"). With iOS 7, I can now embed a UIImage in
Did you try to get the actually height of the text using the boundingRectWithSize method:
NSAttributedString *text;
CGFloat width = 200;
CGRect rect = [text boundingRectWithSize:CGSizeMake(width, CGFLOAT_MAX) options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading context:nil];
CGFloat height = rect.size.height;