BtnCollectionViewCell.m 551 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // BtnCollectionViewCell.m
  3. // jiaPei
  4. //
  5. // Created by apple on 16/3/12.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import "BtnCollectionViewCell.h"
  9. @implementation BtnCollectionViewCell
  10. -(instancetype)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. if (self) {
  14. self.backgroundColor = [UIColor whiteColor];
  15. _btn = [[EXButton alloc] initWithFrame:CGRectMake(2, 2, self.width - 4, self.width - 4)];
  16. [self addSubview:_btn];
  17. }
  18. return self;
  19. }
  20. @end