tags:

views:

22

answers:

0

Hello,

Can you please tell me to which parameters the UITextView is dependent to avoid automatic text scrolling vertically up. I have put the UITextView on UIView by setting below parameters,

    mAddText.autoresizingMask = UIViewAutoresizingFlexibleHeight;
mAddText.directionalLockEnabled = YES;
mAddText.showsHorizontalScrollIndicator = NO;
mAddText.alwaysBounceVertical = NO;

Thank you.