Deshabilitar desplazamiento horizontal a UITextView mediante programación

Estoy buscando una forma de deshabilitar el desplazamiento horizontal de un UITextView programáticamente, fue fácil a través del Creador de interfaces, pero como estoy diseñando la vista programáticamente no puedo encontrar una manera de hacerlo, lo busqué en Google también, pero lo más que obtuve fue esto:

¿Cómo detener el desplazamiento horizontal mediante programación?

y no funciona. ¿Alguna pista?

self.textViewOpenedRect = CGRectMake(20, 20, 280, 130);
self.textView = [[UITextView alloc] initWithFrame: self.textViewOpenedRect];
self.textView.contentInset = UIEdgeInsetsMake(5, 5, 5, 5);
self.textView.delegate = self;
self.textView.backgroundColor = [UIColor clearColor];
self.textView.contentSize = CGSizeMake( self.textView.frame.size.height, self.textView.contentSize.height);

self.textView.alwaysBounceHorizontal = NO;
self.textView.bounces = NO;

UPDATE: aparentemente el problema se debe a esa línea de código:

self.textView.contentInset = UIEdgeInsetsMake(5, 5, 5, 5);

wich Solía tener un poco de espacio entre el marco y el texto. . .am ¿Lo estoy haciendo correctamente?

Respuestas a la pregunta(6)

Su respuesta a la pregunta