ASUserBaseInfoView.h 395 B

1234567891011121314151617181920212223
  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. // vip页面展示用户信息调整
  14. - (void)reSetSubVMas;
  15. @end
  16. NS_ASSUME_NONNULL_END