I'm new developer in the beginning stages of writing a simple dictionary app for personal use on the iPhone, and I'm wondering what method to use to control how long my words are displayed on screen.
I've experimented with NSTimer and performSelector:withObject:afterDelay: but Im wondering if these are the simplest, most efficient ways to approach the problem.
I'm not sure if I should use a sleep method like NSThread sleepForTimeInterval: because I'd like to have the option to have other things going on in the app while the word list is on screen.
Any pointers?
A million thanks.