// // WHMineBottomItemView.h // MSYOUPAI // // Created by 刘必果 on 2024/2/1. // Copyright © 2024 MS. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN typedef void(^WHMineBottomItemViewBlock)(NSDictionary *sourceDic); @interface WHMineBottomItemView : UIView @property (nonatomic, strong) UIImageView *imageView; @property (nonatomic, strong) UILabel *title; @property (nonatomic, strong) UIControl *action; @property (nonatomic, strong) NSDictionary *sourceDic; @property (nonatomic, copy) WHMineBottomItemViewBlock itemBlock; @end NS_ASSUME_NONNULL_END