| 123456789101112131415161718192021222324252627282930 |
- //
- // RAPhotoDelegate.h
- // APEX CRM
- //
- // Created by Jack on 2018/11/28.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #ifndef RAPhotoDelegate_h
- #define RAPhotoDelegate_h
- #import <UIKit/UIKit.h>
- @protocol RAPhotoItemUIDelegate <NSObject>
- @required
- - (void)refreshUI;
- - (void)unbind;
- @end
- @protocol RAPhotoItemDelegate <NSObject>
- @required
- @property (nonatomic,weak) id<RAPhotoItemUIDelegate> delegate;
- - (UIImage *)image;
- @end
- #endif /* RAPhotoDelegate_h */
|