单军华
2018-07-19 2a51383e35b56d6621c04484b5d4f138865ce707
screendisplay/screendisplay/Classes/Helpers/LMJEasyBlankPageView.h
New file
@@ -0,0 +1,22 @@
//
//  LMJEasyBlankPageView.h
//  iOSProject
//
//  Created by windshan on 2017/12/29.
//  Copyright © 2017年 windshan. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef enum : NSUInteger {
    LMJEasyBlankPageViewTypeNoData
} LMJEasyBlankPageViewType;
@interface LMJEasyBlankPageView : UIView
- (void)configWithType:(LMJEasyBlankPageViewType)blankPageType hasData:(BOOL)hasData hasError:(BOOL)hasError reloadButtonBlock:(void(^)(UIButton *sender))block;
@end
@interface UIView (LMJConfigBlank)
- (void)configBlankPage:(LMJEasyBlankPageViewType)blankPageType hasData:(BOOL)hasData hasError:(BOOL)hasError reloadButtonBlock:(void(^)(id sender))block;
@end