// // countdownViewController.h // countdown // // Created by Bess Ho on 9/5/10. // Copyright __MyCompanyName__ 2010. All rights reserved. // #import @interface countdownViewController : UIViewController { UILabel *countdownLabel; NSTimer *countdownTimer; } @property(nonatomic, retain) IBOutlet UILabel *countdownLabel; @property(nonatomic, retain) NSTimer *countdownTimer; - (void) showCountdown:(NSInteger) timeRemaining; - (void) startTimer; - (void) tick; @end