YRTableView.h 532 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YRTableView.h
  3. // UU_Ent
  4. //
  5. // Created by liujl on 2019/4/29.
  6. // Copyright © 2019 UAS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YRTableView : UITableView
  11. /**
  12. 是否自动显示无数据情况下的提示,默认显示
  13. */
  14. @property(assign,nonatomic)BOOL autoNoDataSet;
  15. /**
  16. 无数据显示图偏移量,默认导航加状态栏高度
  17. */
  18. @property(assign,nonatomic)CGFloat verticalOffset;
  19. @property(copy,nonatomic)void(^emptyDidClicked)(void);
  20. @end
  21. NS_ASSUME_NONNULL_END