Con este siguiente código, puede cambiar la altura de su UITextView dependiendo de un ancho fijo (funciona en iOS 7 y la versión anterior):
- (CGFloat)textViewHeightForAttributedText:(NSAttributedString *)text andWidth:(CGFloat)width
{
UITextView *textView = [[UITextView alloc] init];
[textView setAttributedText:text];
CGSize size = [textView sizeThatFits:CGSizeMake(width, FLT_MAX)];
return size.height;
}
Con esta función, tomará un NSAttributedString y un ancho fijo para devolver la altura necesaria.
Si desea calcular el marco a partir de un texto con una fuente específica, debe usar el siguiente código:
- (CGSize)text:(NSString *)text sizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size
{
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
CGRect frame = [text boundingRectWithSize:size
options:(NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading)
attributes:@{NSFontAttributeName:font}
context:nil];
return frame.size;
}
else
{
return [text sizeWithFont:font constrainedToSize:size];
}
}
Puede agregar eso SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO
en su archivo prefix.pch en su proyecto como:
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
También puede reemplazar la prueba anterior SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v)
por:
if ([text respondsToSelector:@selector(boundingRectWithSize:options:attributes:context:)])