admobViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // admobViewController.h
  3. // sjvodios
  4. //
  5. // Created by on 11-12-6.
  6. // Copyright (c) 2011年 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class AppDelegate;
  10. @class JXImageView;
  11. @class JXLabel;
  12. @interface admobViewController : UIViewController{
  13. ATMHud* _wait;
  14. // admobViewController* _pSelf;
  15. }
  16. @property(nonatomic,retain,setter = setLeftBarButtonItem:) UIBarButtonItem *leftBarButtonItem;
  17. @property(nonatomic,retain,setter = setRightBarButtonItem:) UIBarButtonItem *rightBarButtonItem;
  18. @property(nonatomic,assign) BOOL isGotoBack;
  19. @property(nonatomic,assign) BOOL isFreeOnClose;
  20. @property(nonatomic,strong) UIView *tableHeader;
  21. @property(nonatomic,strong) UIView *tableFooter;
  22. @property(nonatomic,strong) UIScrollView *tableBody;
  23. @property(nonatomic,assign) int heightHeader;
  24. @property(nonatomic,assign) int heightFooter;
  25. @property(nonatomic,strong) UIButton *footerBtnMid;
  26. @property(nonatomic,strong) UIButton *footerBtnLeft;
  27. @property(nonatomic,strong) UIButton *footerBtnRight;
  28. @property(nonatomic,strong) JXLabel *headerTitle;
  29. -(void)createHeadAndFoot;
  30. -(void)actionQuit;
  31. -(void)onGotoHome;
  32. @end