1234567891011121314151617181920212223242526272829303132 |
- //
- // YOUPAILZLiveCurrentMemberView.h
- // VQU
- //
- // Created by CY on 2021/7/22.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZLiveMemberModel.h"
- #import "YOUPAILZLevelView.h"
- #import "YOUPAILZAvatarView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZLiveCurrentMemberView : UIView
- @property (nonatomic, weak) UILabel *youpaiprankL;
- @property (nonatomic, weak) YOUPAILZAvatarView *youpaipavatarView;
- @property (nonatomic, weak) UILabel *youpaipnicknameL;
- @property (nonatomic, weak) UIImageView *youpaipsexV;
- @property (nonatomic, weak) UIImageView *youpaipvipImgV;
- @property (nonatomic, weak) YOUPAILZLevelView *youpaiplevelView;
- @property (nonatomic, weak) UILabel *youpaipcontributionL;
- @property (nonatomic, weak) UILabel *youpaiplastDifferenceL;
- - (void)youpaifreloadWithModel:(YOUPAILZLiveMemberModel *)member;
- @end
- NS_ASSUME_NONNULL_END
|