| 123456789101112131415161718192021 |
- //
- // RAPhotoCellDelegate.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/10/31.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #ifndef RAPhotoCellDelegate_h
- #define RAPhotoCellDelegate_h
- #import <UIKit/UIkit.h>
- @class RAPhotoCell,RAPhotoItemModel;
- @protocol RAPhotoCellDelegate <NSObject>
- - (void)photoCell:(RAPhotoCell *)cell didClickPhotoItem:(RAPhotoItemModel *)model;
- @end
- #endif /* RAPhotoCellDelegate_h */
|