33 lines
938 B
Objective-C
Executable File
33 lines
938 B
Objective-C
Executable File
//
|
|
// BJGiftViewCell.h
|
|
// QiaoYuYueWan
|
|
//
|
|
// Created by bianruifeng on 2019/12/11.
|
|
// Copyright © 2019 QiaoYuYueWan. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class BJRoomGiftModel;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BJGiftItemCell : UICollectionViewCell
|
|
|
|
@property (nonatomic, strong) UIImageView *giftIcon;
|
|
@property (nonatomic, strong) UIButton *giftName;
|
|
@property (nonatomic, strong) UILabel *giftPrice;
|
|
@property(nonatomic, strong) UILabel *packageGiftCount;//背包显示单个礼物数量
|
|
@property (nonatomic, strong) UIButton *tagBtn;
|
|
|
|
+ (instancetype)cellWithCollectionView:(UICollectionView *)collectionView forIndexPath:(NSIndexPath *)indexPath;
|
|
|
|
@property (nonatomic, strong) BJRoomGiftModel *model;
|
|
|
|
- (void)configApplyupMicModel:(BJRoomGiftModel *)model;
|
|
|
|
/// 切换选中状态
|
|
/// @param isSelected yes or no
|
|
- (void)changeUISelected:(BOOL)isSelected;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|