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

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  TouchExplorerViewController.h
  3. //  TouchExplorer
  4. //
  5. //  Created by Jeff LaMarche on 8/2/08.
  6. //  Copyright __MyCompanyName__ 2008. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TouchExplorerViewController : UIViewController {
  10. IBOutlet UILabel *messageLabel;
  11. IBOutlet UILabel *tapsLabel;
  12. IBOutlet UILabel *touchesLabel;
  13. }
  14. @property (nonatomic, retain) UILabel *messageLabel;
  15. @property (nonatomic, retain) UILabel *tapsLabel;
  16. @property (nonatomic, retain) UILabel *touchesLabel;
  17. - (void)updateLabelsFromTouches:(NSSet *)touches;
  18. @end