DKUICollectionViewCellImageProtocol.h 345 B

1234567891011121314151617181920
  1. //
  2. // DKUICollectionViewCellImageProtocol.h
  3. // IBOSS
  4. //
  5. // Created by apple on 15/12/11.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol DKUICollectionViewCellImageProtocol <NSObject>
  10. @optional
  11. /**
  12. * 点击图片需要查看大图的回调
  13. *
  14. */
  15. -(void)clickImage:(id)cell;
  16. @end