1234567891011121314151617181920 |
- //
- // NoDataView.h
- // ZBProject
- //
- // Created by 学丽 on 2019/4/24.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NoDataView : UIView
- @property(nonatomic,assign)BOOL isShowNoDataView;
- @property(nonatomic,strong)UIImageView *imgView;
- @property(nonatomic,strong)UILabel *tipeLabel;
- @end
- NS_ASSUME_NONNULL_END
|