A arjit macrumors newbie Original poster Feb 20, 2009 18 0 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 Sep 18, 2003 2,964 122 London, UK 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 Sep 2, 2004 15,982 452 The Centennial State 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?