UIView+LZEmptyView.h 865 B

1234567891011121314
  1. #import "LZEmptyView.h"
  2. NS_ASSUME_NONNULL_BEGIN
  3. @interface UIView (LZEmptyView)
  4. - (void)lz_showEmptyViewWithImage:(UIImage *)image content:(NSString *)content;
  5. - (void)lz_showEmptyViewWithImage:(UIImage *)image content:(NSString *)content btnTitle:(NSString *)btnTitle btnColor:(UIColor *)btnColor block:(void(^)(void))block;
  6. - (void)lz_showEmptyViewWithUrl:(NSURL *)url content:(NSString *)content;
  7. //- (void)lz_showAfreshLoadViewWithMsg:(NSString *)msg afreshLoadAction:(void (^)(void))block;
  8. - (void)lz_hideEmptyView;
  9. - (void)lz_showEmptyViewWithImageSizeWUWU:(UIImage *)image content:(NSString *)content;
  10. - (void)lz_showEmptyViewWithImage:(UIImage *)image title:(NSString *)title content:(NSString *)content btnTitle:(NSString *)btnTitle styleBlock:(void (^)(LYEmptyView *emptyView))styleBlock block:(nonnull void (^)(void))block;
  11. @end
  12. NS_ASSUME_NONNULL_END