123456789101112131415161718 |
- //
- // BtnCollectionViewCell.h
- // jiaPei
- //
- // Created by apple on 16/3/12.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "EXButton.h"
- @interface BtnCollectionViewCell : UICollectionViewCell
- @property (nonatomic, strong) EXButton *btn;
- -(instancetype)initWithFrame:(CGRect)frame;
- @end
|