quiero cambiar el UITextView programación con la cantidad de texto que puse, y tengo un problema, si añado una la UITextView con el constructor del interfaz y puedo hacer esto:cambio UITextView altura mediante programación con el texto
CGRect frame = textViewA1.frame;
frame.size.height = textViewA1.contentSize.height;
textViewA1.frame = frame;
todos funcionan bien, pero si creo el UITextView mediante programación, la altura no cambia, hago esto:
UITextView *textViewA1 = [[UITextView alloc] initWithFrame:CGRectMake(5, 5, 320, 50)];
[textViewA1 setFont:[UIFont fontWithName:@"Enriqueta" size:15]];
[textViewA1 setScrollEnabled:NO];
[textViewA1 setUserInteractionEnabled:NO];
[textViewA1 setBackgroundColor:[UIColor clearColor]];
[textViewA1 setText:@"A lot of text"];
CGRect frame = textViewA1.frame;
frame.size.height = textViewA1.contentSize.height;
textViewA1.frame = frame;
de esta manera el tamaño altura de la UITextView no cambian, cómo puedo hacer?
gracias perfecto :) – Supertecnoboff
u gran amigo ... –