@interface ZLBaseView : UIView
// 背景視圖
@property (nonatomic, strong) UIView *backgroundView;
// 彈出視圖
@property (nonatomic, strong) UIView *alertView;
// 頂部視圖
@property (nonatomic, strong) UIView *topView;
// 左邊取消按鈕
@property (nonatomic, strong) UIButton *leftBtn;
// 右邊確定按鈕
@property (nonatomic, strong) UIButton *rightBtn;
// 中間標題
@property (nonatomic, strong) UILabel *titleLabel;
// 分割線視圖
@property (nonatomic, strong) UIView *lineView;
/** 初始化子視圖 */
- (void)initUI;
/** 點擊背景遮罩圖層事件 */
- (void)didTapBackgroundView:(UITapGestureRecognizer *)sender;
/** 取消按鈕的點擊事件 */
- (void)clickLeftBtn;
/** 確定按鈕的點擊事件 */
- (void)clickRightBtn;
/** 自定義主題顏色 */
- (void)setupThemeColor:(UIColor *)themeColor;