dkahgld

FMPlaceholderView.h 755B

123456789101112131415161718192021222324
  1. //
  2. // FMPlaceholderView.h
  3. // FMListPlaceholderExample
  4. //
  5. // Created by Mingo on 2018/8/9.
  6. // Copyright © 2017年 袁凤鸣. All rights reserved.
  7. // 项目地址:https://github.com/yfming93/FMListPlaceholder
  8. // 作者博客:https://www.yfmingo.cn
  9. //
  10. #import <UIKit/UIKit.h>
  11. @interface FMPlaceholderView : UIView
  12. @property (nonatomic, copy) void(^reloadClickBlock)(void);
  13. @property (nonatomic, strong) UIButton *emptyTips;
  14. @property (nonatomic, strong) UIImageView *emptyCover;
  15. @property (nonatomic, assign) CGSize coverSize;
  16. @property (nonatomic, assign) CGFloat coverSpaceToTips;
  17. @property (nonatomic, assign) CGFloat coverCenterYOffset;
  18. /// 设置默认的 自定义 占位图
  19. @property (nonatomic, strong) UIView *defaultPlaceholder;
  20. @end