| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- //
- // BGBaseViewController.m
- // BugoLive
- //
- // Created by xfg on 16/11/25.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import "BGBaseViewController.h"
- @interface BGBaseViewController ()
- @property (nonatomic, copy) BackBlock backBlock;
- @end
- @implementation BGBaseViewController
- - (void)dealloc
- {
- NSLog(@"dealloc %@", [self description]);
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- [self hideMyHud];
- }
- - (void)didReceiveMemoryWarning
- {
- [super didReceiveMemoryWarning];
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
-
- // 指定边缘要延伸的方向,子类有其他需求时记得重写该属性
- self.edgesForExtendedLayout = UIRectEdgeNone;
-
- [IQKeyboardManager sharedManager].shouldResignOnTouchOutside = YES;
-
- // self.view.backgroundColor = kBackGroundColor;
-
-
- // 1、初始化变量
- [self initFWVariables];
- // 2、UI创建
- [self initFWUI];
-
- // LocalizationSetLanguage(@"zh-Hant");
- [self setUpLocalizationString];
-
- // 3、加载数据
- [self initFWData];
- }
- #pragma mark - ----------------------- 供子类重写 -----------------------
- #pragma mark 初始化变量
- - (void)initFWVariables
- {
- // 子类重写
- }
- #pragma mark UI创建
- - (void)initFWUI
- {
- // 子类重写
- }
- #pragma mark 加载数据
- - (void)initFWData
- {
- // 子类重写
- }
- #pragma mark - ----------------------- 返回按钮、事件 -----------------------
- - (void)setupBackBtnWithBlock:(BackBlock)backBlock
- {
- self.backBlock = backBlock;
-
- self.navigationItem.leftBarButtonItem = [UIBarButtonItem itemWithTarget:self action:@selector(onReturnBtnPress) image:@"com_arrow_vc_back" highImage:@"com_arrow_vc_back"];
- }
- #pragma mark - 返回上一级
- - (void)onReturnBtnPress
- {
- if (self.backBlock)
- {
- self.backBlock();
- }
- else
- {
- [self.navigationController popViewControllerAnimated:NO];
- }
- }
- #pragma mark - ----------------------- 指示器 -----------------------
- #pragma mark - HUD
- - (MBProgressHUD *)proHud
- {
- if (!_proHud)
- {
- _proHud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
- _proHud.mode = MBProgressHUDModeIndeterminate;
- }
- return _proHud;
- }
- - (void)hideMyHud
- {
- if (_proHud)
- {
- [_proHud hideAnimated:YES];
- _proHud = nil;
- }
- }
- - (void)showMyHud
- {
- [self.proHud showAnimated:YES];
- }
- #pragma mark - ----------------------- 无内容视图 -----------------------
- - (void)showNoContentView
- {
- [self.view addSubview:self.noContentView];
- }
- - (void)hideNoContentView
- {
- [self.noContentView removeFromSuperview];
- self.noContentView = nil;
- }
- - (BGNoContentView *)noContentView
- {
- if (!_noContentView)
- {
- // _noContentView = [BGNoContentView noContentWithFrame:CGRectMake(0, 0, 150, 175)];
- _noContentView = [[BGNoContentView alloc]initWithFrame:CGRectMake(0, 0, 150, 175)];
- _noContentView.center = CGPointMake(self.view.frame.size.width/2, self.view.frame.size.height/2);
- }
- return _noContentView;
- }
- #pragma mark ------------------------ GET -----------------------
- - (NetHttpsManager *)httpsManager
- {
- if (!_httpsManager)
- {
- _httpsManager = [NetHttpsManager manager];
- }
- return _httpsManager;
- }
- - (GlobalVariables *)BuguLive
- {
- if (!_BuguLive)
- {
- _BuguLive = [GlobalVariables sharedInstance];
- }
- return _BuguLive;
- }
- @end
|