I'd like to scroll text in my iPhone application, and I believe I can use NSTimer for this. How would I use NSTimer in this case?
Asked
Active
Viewed 258 times
1
-
It is not clear exactly what you want to do. How are you scrolling the text? – progrmr Jun 20 '10 at 17:58
-
Rather than using NSTimer, have you looked at using Core Animation, like in the question [Resizable UILabel which scrolls across the screen](http://stackoverflow.com/questions/430942/resizable-uilabel-which-scrolls-across-the-screen) ? – Brad Larson Dec 29 '10 at 13:28
1 Answers
0
on the timer elapse try this
[myTextView scrollRangeToVisible:NSMakeRange(0, 0)];
increment the position range instead

yasirmturk
- 1,924
- 2
- 22
- 32