1234567891011121314151617181920212223242526272829 |
- //
- // WHMineBottomItemView.h
- // MSYOUPAI
- //
- // Created by 刘必果 on 2024/2/1.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|