IconInfoView.h 480 B

123456789101112131415161718192021
  1. //
  2. // IconInfoView.h
  3. // BuguLive
  4. //
  5. // Created by voidcat on 2024/9/12.
  6. // Copyright © 2024 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface IconInfoView : UIView
  11. @property (nonatomic, strong) UIView *ageView;
  12. @property (nonatomic, strong) UIImageView *levelView;
  13. @property (nonatomic, strong) UIImageView *nobleView;
  14. @property (nonatomic, strong) UIImageView *vipView;
  15. - (void)updateConstraintsIfNeeded;
  16. @end
  17. NS_ASSUME_NONNULL_END