1

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?

Brad Larson
  • 169,393
  • 45
  • 393
  • 567
Linux world
  • 3,724
  • 11
  • 42
  • 59
  • 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 Answers1

0

on the timer elapse try this

[myTextView scrollRangeToVisible:NSMakeRange(0, 0)];

increment the position range instead

yasirmturk
  • 1,903
  • 2
  • 21
  • 31