| 1234567891011121314151617181920 |
- //
- // DKUICollectionViewCellImageProtocol.h
- // IBOSS
- //
- // Created by apple on 15/12/11.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @protocol DKUICollectionViewCellImageProtocol <NSObject>
- @optional
- /**
- * 点击图片需要查看大图的回调
- *
- */
- -(void)clickImage:(id)cell;
- @end
|