口袋优选

KBCategoryButtonCell.m 841B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // KBCategoryButtonCell.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/4/26.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBCategoryButtonCell.h"
  9. @implementation KBCategoryButtonCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
  15. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  16. if (self) {
  17. }
  18. return self;
  19. }
  20. - (void)setupButtonWithModelArray:(NSArray<KBMorePicCollectionModel *> *)array {
  21. for (int i = 0; i < array.count; i++) {
  22. }
  23. }
  24. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  25. [super setSelected:selected animated:animated];
  26. // Configure the view for the selected state
  27. }
  28. @end