1234567891011121314151617181920212223242526272829 |
- //
- // BtnCollectionViewCell.m
- // jiaPei
- //
- // Created by apple on 16/3/12.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import "BtnCollectionViewCell.h"
- @implementation BtnCollectionViewCell
- -(instancetype)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- if (self) {
-
- self.backgroundColor = [UIColor whiteColor];
-
- _btn = [[EXButton alloc] initWithFrame:CGRectMake(2, 2, self.width - 4, self.width - 4)];
-
- [self addSubview:_btn];
- }
- return self;
- }
- @end
|