YOUPAILZChatRoomCurrentMemberView.h 974 B

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