| 1234567891011121314151617181920212223242526 |
- //
- // ContributionLsitBottomView.h
- // BuguLive
- //
- // Created by 宋晨光 on 2021/3/24.
- // Copyright © 2021 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ContributionLsitBottomView : UIView
- @property (nonatomic, strong) UIImageView * headImageView;
- @property (nonatomic, strong) UILabel * nicknameLabel;
- @property (nonatomic, strong) UIImageView * rankImgV;
- @property (nonatomic, strong) UILabel * valueLabel;
- @property (strong, nonatomic) UILabel *titleL;
- @property (strong, nonatomic) UILabel *contentL;
- @end
- NS_ASSUME_NONNULL_END
|