A arjit macrumors newbie Original poster Jun 8, 2009 #1 I want to switch off the scroll of UItextview because when i am entering the word i am not able to see it. how can i switch it off ??
I want to switch off the scroll of UItextview because when i am entering the word i am not able to see it. how can i switch it off ??
johnnyjibbs macrumors 68030 Jun 8, 2009 #2 UITextView inherits from UIScrollView so you should be able to switch it off as follows: Code: textView.scrollEnabled = NO;
UITextView inherits from UIScrollView so you should be able to switch it off as follows: Code: textView.scrollEnabled = NO;
dejo Moderator emeritus Jun 8, 2009 #3 UITextView inherits from UIScrollView. UIScrollView has a property related to enabling scrolling. That help?
UITextView inherits from UIScrollView. UIScrollView has a property related to enabling scrolling. That help?