| 1234567891011121314151617181920212223242526272829 |
- //
- // YRTableView.h
- // UU_Ent
- //
- // Created by liujl on 2019/4/29.
- // Copyright © 2019 UAS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YRTableView : UITableView
- /**
- 是否自动显示无数据情况下的提示,默认显示
- */
- @property(assign,nonatomic)BOOL autoNoDataSet;
- /**
- 无数据显示图偏移量,默认导航加状态栏高度
- */
- @property(assign,nonatomic)CGFloat verticalOffset;
- @property(copy,nonatomic)void(^emptyDidClicked)(void);
- @end
- NS_ASSUME_NONNULL_END
|