RAPhotoDelegate.h 479 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // RAPhotoDelegate.h
  3. // APEX CRM
  4. //
  5. // Created by Jack on 2018/11/28.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #ifndef RAPhotoDelegate_h
  9. #define RAPhotoDelegate_h
  10. #import <UIKit/UIKit.h>
  11. @protocol RAPhotoItemUIDelegate <NSObject>
  12. @required
  13. - (void)refreshUI;
  14. - (void)unbind;
  15. @end
  16. @protocol RAPhotoItemDelegate <NSObject>
  17. @required
  18. @property (nonatomic,weak) id<RAPhotoItemUIDelegate> delegate;
  19. - (UIImage *)image;
  20. @end
  21. #endif /* RAPhotoDelegate_h */