RAPhotoPreviewController.h 445 B

123456789101112131415161718192021
  1. //
  2. // RAPhotoPreviewController.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/5.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RAPhotoPreviewController : UIViewController
  10. @property (nonatomic,strong) UIImage *image;
  11. @property (nonatomic,assign) BOOL canDelete;///< default is YES
  12. @property (nonatomic,copy) void (^completion)(void);
  13. + (instancetype)viewControllerFromStoryboard;
  14. @end