TapTapsViewController.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:
iPhone
开发平台:
MultiPlatform
- //
- // TapTapsViewController.h
- // TapTaps
- //
- // Created by Jeff LaMarche on 8/3/08.
- // Copyright __MyCompanyName__ 2008. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TapTapsViewController : UIViewController {
- IBOutlet UILabel *singleLabel;
- IBOutlet UILabel *doubleLabel;
- IBOutlet UILabel *tripleLabel;
- IBOutlet UILabel *quadrupleLabel;
- }
- @property (nonatomic, retain) UILabel *singleLabel;
- @property (nonatomic, retain) UILabel *doubleLabel;
- @property (nonatomic, retain) UILabel *tripleLabel;
- @property (nonatomic, retain) UILabel *quadrupleLabel;
- - (void)singleTap;
- - (void)doubleTap;
- - (void)tripleTap;
- - (void)quadrupleTap;
- - (void)eraseMe:(UITextField *)textField ;
- @end