Files
yuyin_ios/SweetParty/主类/RCMic/Room/BaoMaiView/BJRoomBaomaiCell.h
2025-08-08 11:05:33 +08:00

34 lines
917 B
Objective-C
Executable File

//
// RoomFluctuationOfWheatCell.h
// QiaoYuYueWan
//
// Created by apple on 2020/4/11.
// Copyright © 2020 QiaoYuYueWan. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "BJRoomBaomaiModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface BJRoomBaomaiCell : UITableViewCell
@property (nonatomic, strong) UIView *bgView;
@property (nonatomic, strong) UIImageView *icon;
@property (nonatomic, strong) UILabel *nickName;
@property (nonatomic, strong) UILabel *uid;
@property (nonatomic, strong) UIView *lineView;
/**/
@property(nonatomic, strong) UILabel *timeLabel;
@property (nonatomic, strong) UIImageView *typeImgV;//身份
@property (nonatomic , copy) void(^quDingButtonClickBlock)(BJRoomBaomaiModel *model);
@property (nonatomic, strong) BJRoomBaomaiModel *model;
@property (nonatomic, strong) UIButton *quDingButton;
+ (instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END