BaseViewController.h 1016 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // BaseViewController.h
  3. // CommonLibrary
  4. //
  5. // Created by Alexi on 14-1-15.
  6. // Copyright (c) 2014年 CommonLibrary. All rights reserved.
  7. //
  8. #import "CommonBaseViewController.h"
  9. #import "GlobalVariables.h"
  10. #import "NetHttpsManager.h"
  11. #import <QMUIKit/QMUIKit.h>
  12. @class FBKVOController;
  13. @interface BaseViewController : CommonBaseViewController<UIActionSheetDelegate, UINavigationControllerDelegate, UIImagePickerControllerDelegate>{
  14. GlobalVariables *_BuguLive;
  15. NetHttpsManager *_httpsManager;
  16. }
  17. @property (nonatomic, strong) GlobalVariables *BuguLive; // 存储app相关参数的单例
  18. @property (nonatomic, strong) NetHttpsManager *httpsManager; // 网络请求封装
  19. - (void)callImagePickerActionSheet;
  20. // 对于界面上有输入框的,可以选择性调用些方法进行收起键盘
  21. - (void)addTapBlankToHideKeyboardGesture;
  22. @property (nonatomic, strong) QMUITableView * tableView;
  23. @property (nonatomic, strong) UICollectionView * collectionView;
  24. @end