口袋优选

KBOtherTopCollectionCell.m 477B

123456789101112131415161718192021222324252627
  1. //
  2. // KBOtherTopCollectionCell.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/7/16.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBOtherTopCollectionCell.h"
  9. #import "KBChildHeaderView.h"
  10. #import "KBTodayModelView.h"
  11. @implementation KBOtherTopCollectionCell
  12. - (instancetype)initWithFrame:(CGRect)frame {
  13. self = [super initWithFrame:frame];
  14. if (self) {
  15. self.backgroundColor = [UIColor clearColor];
  16. }
  17. return self;
  18. }
  19. @end