| 1234567891011121314151617 |
- //
- // DKUICollectionViewCell.h
- // IBOSS
- //
- // Created by Dongke on 15/11/30.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DKUICollectionViewCellImageProtocol.h"
- @interface DKUICollectionViewCell : UICollectionViewCell
- @property (strong, nonatomic) IBOutlet UIImageView *imageView;
- @property (strong, nonatomic) IBOutlet UIButton *btnImageView;
- @property (strong, nonatomic) NSIndexPath *indexPath;
- @property(nonatomic, strong) id<DKUICollectionViewCellImageProtocol> clickImageDelegate;
- @end
|