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