DKUICollectionViewCell.h 547 B

1234567891011121314151617
  1. //
  2. // DKUICollectionViewCell.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 15/11/30.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "DKUICollectionViewCellImageProtocol.h"
  10. @interface DKUICollectionViewCell : UICollectionViewCell
  11. @property (strong, nonatomic) IBOutlet UIImageView *imageView;
  12. @property (strong, nonatomic) IBOutlet UIButton *btnImageView;
  13. @property (strong, nonatomic) NSIndexPath *indexPath;
  14. @property(nonatomic, strong) id<DKUICollectionViewCellImageProtocol> clickImageDelegate;
  15. @end