增加换肤功能
This commit is contained in:
50
QXLive/Dynamic(语圈)/View/QXDynamicListCell.h
Executable file
50
QXLive/Dynamic(语圈)/View/QXDynamicListCell.h
Executable file
@@ -0,0 +1,50 @@
|
||||
//
|
||||
// QXDynamicListCell.h
|
||||
// SweetParty
|
||||
//
|
||||
// Created by bj_szd on 2022/6/1.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "QXDynamicModel.h"
|
||||
#import "QXSeatHeaderView.h"
|
||||
typedef NS_ENUM(NSInteger) {
|
||||
QXDynamicListCellDynamic = 0,
|
||||
QXDynamicListCellDetail ,
|
||||
QXDynamicListCellHomePage ,
|
||||
}QXDynamicListCellType;
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface QXDynamicListCell : UITableViewCell
|
||||
@property (weak, nonatomic) IBOutlet UIView *bgView;
|
||||
|
||||
@property (weak, nonatomic) IBOutlet QXSeatHeaderView *avatarImgV;
|
||||
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
||||
@property (weak, nonatomic) IBOutlet UIImageView *sexImgV;
|
||||
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
|
||||
@property (weak, nonatomic) IBOutlet UIButton *focusBtn;
|
||||
@property (weak, nonatomic) IBOutlet UILabel *contentLab;
|
||||
@property (weak, nonatomic) IBOutlet UIView *imgsBgView;
|
||||
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgsBgViewHeightCon;
|
||||
@property (weak, nonatomic) IBOutlet UIButton *commentBtn;
|
||||
@property (weak, nonatomic) IBOutlet UIButton *zanBtn;
|
||||
@property (weak, nonatomic) IBOutlet UIButton *giveBtn;
|
||||
@property (weak, nonatomic) IBOutlet UIImageView *sexImageView;
|
||||
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UIImageView *userImageView1;
|
||||
@property (weak, nonatomic) IBOutlet UIImageView *userImageView2;
|
||||
@property (weak, nonatomic) IBOutlet UIImageView *userImageView3;
|
||||
@property (weak, nonatomic) IBOutlet UILabel *likeCountLabel;
|
||||
@property (weak, nonatomic) IBOutlet UIButton *likeViewBtn;
|
||||
|
||||
@property (nonatomic, copy) void(^onDeleteBlock)(QXDynamicModel*model);
|
||||
|
||||
|
||||
@property (nonatomic, strong) QXDynamicModel *model;
|
||||
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *bgLeftCon;
|
||||
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *bgRightCon;
|
||||
@property (nonatomic, assign) QXDynamicListCellType cellType;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user