TapTapsViewController.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  TapTapsViewController.h
  3. //  TapTaps
  4. //
  5. //  Created by Jeff LaMarche on 8/3/08.
  6. //  Copyright __MyCompanyName__ 2008. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TapTapsViewController : UIViewController {
  10. IBOutlet UILabel *singleLabel;
  11. IBOutlet UILabel *doubleLabel;
  12. IBOutlet UILabel *tripleLabel;
  13. IBOutlet UILabel *quadrupleLabel;
  14. }
  15. @property (nonatomic, retain) UILabel *singleLabel;
  16. @property (nonatomic, retain) UILabel *doubleLabel;
  17. @property (nonatomic, retain) UILabel *tripleLabel;
  18. @property (nonatomic, retain) UILabel *quadrupleLabel;
  19. - (void)singleTap;
  20. - (void)doubleTap;
  21. - (void)tripleTap;
  22. - (void)quadrupleTap;
  23. - (void)eraseMe:(UITextField *)textField ;
  24. @end