RAPhotoCellDelegate.h 434 B

123456789101112131415161718192021
  1. //
  2. // RAPhotoCellDelegate.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/10/31.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #ifndef RAPhotoCellDelegate_h
  9. #define RAPhotoCellDelegate_h
  10. #import <UIKit/UIkit.h>
  11. @class RAPhotoCell,RAPhotoItemModel;
  12. @protocol RAPhotoCellDelegate <NSObject>
  13. - (void)photoCell:(RAPhotoCell *)cell didClickPhotoItem:(RAPhotoItemModel *)model;
  14. @end
  15. #endif /* RAPhotoCellDelegate_h */