BBAPanelGridViewCell.h
1.04 KB
//
// BBAPanelGridViewCell.h
// BBAUIKit
//
// Created by Guo,Zhaozhuo on 2020/3/18.
// Copyright © 2020 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "BBAPanelItem.h"
#import "BBAPanelCommon.h"
@interface BBAPanelGridViewCell : UICollectionViewCell
@property (nonatomic, strong) NSString *text;
/// 字体颜色
@property (nonatomic, strong) NSString *textColorHex;
@property (nonatomic, strong) UIColor *textColor;
@property (nonatomic, strong) UIImage *image;
@property (nonatomic, strong) NSURL *imageUrl;
/// 飘红点
@property (nonatomic, assign) BOOL hasBadge;
/// 飘数字或文字
@property (nonatomic, copy) NSString *badgeValue;
@property (nonatomic, strong) BBAPanelItem *panelItem;
@property (nonatomic, assign) BOOL clickEnabled;
@property (nonatomic, copy) NSString *themeMode;
/// cell 的内容视图(包括icon,title,badge,不包括边缘空区域)
@property (nonatomic, strong) UIView *itemView;
@end