YOUPAILZLiveCurrentMemberView.h 898 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // YOUPAILZLiveCurrentMemberView.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/7/22.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILZLiveMemberModel.h"
  10. #import "YOUPAILZLevelView.h"
  11. #import "YOUPAILZAvatarView.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface YOUPAILZLiveCurrentMemberView : UIView
  14. @property (nonatomic, weak) UILabel *youpaiprankL;
  15. @property (nonatomic, weak) YOUPAILZAvatarView *youpaipavatarView;
  16. @property (nonatomic, weak) UILabel *youpaipnicknameL;
  17. @property (nonatomic, weak) UIImageView *youpaipsexV;
  18. @property (nonatomic, weak) UIImageView *youpaipvipImgV;
  19. @property (nonatomic, weak) YOUPAILZLevelView *youpaiplevelView;
  20. @property (nonatomic, weak) UILabel *youpaipcontributionL;
  21. @property (nonatomic, weak) UILabel *youpaiplastDifferenceL;
  22. - (void)youpaifreloadWithModel:(YOUPAILZLiveMemberModel *)member;
  23. @end
  24. NS_ASSUME_NONNULL_END