Chapter 24. NSTimer

An instance of NSButton has a target and an action (selector). When the button is clicked, the action message is sent to the target. Timers work in a similar way. A timer is an object that has a target, a selector, and a delay, which is given in seconds (Figure 24.1).

NSTimer

Figure 24.1. NSTimer

After the delay, the selector message is sent to the target. The timer sends itself as an argument to the message. The timer can also be set to send the message repeatedly.

To play with timers a bit, you will create a typing-tutor application. The application will have two BigLetterView objects. One will display what the user should type, and the ...

Get Cocoa Programming for Mac OS X, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.