WHMineBottomItemView.h 597 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // WHMineBottomItemView.h
  3. // MSYOUPAI
  4. //
  5. // Created by 刘必果 on 2024/2/1.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^WHMineBottomItemViewBlock)(NSDictionary *sourceDic);
  11. @interface WHMineBottomItemView : UIView
  12. @property (nonatomic, strong) UIImageView *imageView;
  13. @property (nonatomic, strong) UILabel *title;
  14. @property (nonatomic, strong) UIControl *action;
  15. @property (nonatomic, strong) NSDictionary *sourceDic;
  16. @property (nonatomic, copy) WHMineBottomItemViewBlock itemBlock;
  17. @end
  18. NS_ASSUME_NONNULL_END