BaseViewController.h 645 Bytes
//
//  BaseViewController.h
//  ZXBaseProject
//
//  Created by 张旭 on 2017/1/10.
//  Copyright © 2017年 cnlive. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface BaseViewController : UIViewController

@property (nonatomic, strong) UIButton *btnRight;
@property (nonatomic, strong) UIButton *btnLeft;

@property (nonatomic)         BOOL isModalButton;

/**
 *  加载视图
 */
- (void)bindView;

/**
 *  加载模型
 */
- (void)bindModel;

/**
 *  加载方法
 */
- (void)bindAction;

- (void)onBackAction;

- (void)onRightAction;

/**
 *  词典转换为字符串
 */
- (NSString*)dictionaryToJson:(NSDictionary *)dic;

@end