ASUserBaseInfoView.h 413 B

12345678910111213141516171819202122232425
  1. //
  2. // ASUserBaseInfoView.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/5/15.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASUserAvaterView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASUserBaseInfoView : UIView
  11. @property (nonatomic, strong) ASUserAvaterView *avaterV;
  12. @property (nonatomic, strong) UILabel *usefualLb;
  13. - (void)setData;
  14. // vip页面展示用户信息调整
  15. - (void)reSetSubVMas;
  16. @end
  17. NS_ASSUME_NONNULL_END