Davin
2024-06-07 4c1abca185a5727da6fb314a0cb4cd44bfe1b3bf
EZSDK/EZSDK/EZ/Base/HDLEZBaseViewController.m
@@ -25,7 +25,6 @@
    self.view.backgroundColor=HDLEZ_COLOR_VIEW_BACKGROUND;
    
    [self addSubViews];
    // Do any additional setup after loading the view.
}
@@ -45,7 +44,7 @@
        make.right.equalTo(self.view).offset(-20);
        make.height.mas_equalTo(60);
    }];
    [_noDataV setHidden:YES];
//    [_noDataV setHidden:YES];
}
@@ -55,6 +54,8 @@
-(void)showNoDataViewWithMessage:(NSString *)message {
    [_noDataV setHidden:NO];
    _noDataV.tipMsg=message;
    [self.view bringSubviewToFront:_noDataV];
}
@@ -74,6 +75,7 @@
- (HDLEZTopBarView *)topBarView{
    if (!_topBarView) {
        _topBarView = [[HDLEZTopBarView alloc] initWithFrame: CGRectMake(0, 0, HDLEZ_APP_SCREEN_WIDTH, 40)];
        [_topBarView.leftButton addTarget:self action:@selector(goBack) forControlEvents:UIControlEventTouchUpInside];
        [_topBarView.backButton addTarget:self action:@selector(goBack) forControlEvents:UIControlEventTouchUpInside];
    }
    return _topBarView;
@@ -105,4 +107,5 @@
-(void)clickRightBtn{
    
}
@end