12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // KBCategoryButtonCell.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/4/26.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "KBCategoryButtonCell.h"
- @implementation KBCategoryButtonCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
- self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
- if (self) {
-
- }
- return self;
- }
- - (void)setupButtonWithModelArray:(NSArray<KBMorePicCollectionModel *> *)array {
- for (int i = 0; i < array.count; i++) {
-
- }
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|