ASEnterItemV.h 443 B

12345678910111213141516171819202122232425
  1. //
  2. // ASEnterItemV.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/5/15.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ASEnterItemV : UIView
  10. @property (nonatomic,strong) UILabel *titleLb;
  11. @property (nonatomic,strong) UIImageView *imageV;
  12. @property (nonatomic, strong) UIButton *btn;
  13. @property (nonatomic,copy) btnClickBlock clickCallBack;
  14. - (void)setData:(NSString *)title icon:(UIImage *)img;
  15. @end
  16. NS_ASSUME_NONNULL_END