Text rola fora do limite da caixa UITextView

Eu tenho um UITextView que contém algum texto. O problema é que o texto rola fora dos limites da caixa UITextView. (O UITextView não é editável.)

aqui está o código e o que tentei resolver esse problema:

  - (void)viewDidLoad {

        textBG.contentInset = UIEdgeInsetsZero;

    //  textBG.layer.masksToBounds = NO;
        textBG.layer.cornerRadius = 10.0;
        textBG.layer.borderWidth = 0.0;
        [textBG setClipsToBounds:YES];

    [super viewDidLoad];
}

- (void)textViewDidBeginEditing:(UITextView*)textView
{

textBG.contentInset = UIEdgeInsetsZero;    
 [textBG setClipsToBounds:YES];   
}

- (void) shouldChangeTextInRange:(UITextView*)textView {

    textBG.contentInset = UIEdgeInsetsZero;    
    [textBG setClipsToBounds:YES];

}

Obrigado por qualquer ajud

questionAnswers(4)

yourAnswerToTheQuestion