| 12345678910111213141516171819 |
- //
- // RAPhotoPreviewController.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/5.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RAPhotoPreviewController : UIViewController
- @property (nonatomic,strong) UIImage *image;
- @property (nonatomic,copy) void (^completion)(void);
- + (instancetype)viewControllerFromStoryboard;
- @end
|