// // SPSBPreviewViewController.h // 我的社保 // // Created by shanp on 2021/5/18. // #import NS_ASSUME_NONNULL_BEGIN @interface SPSBPreviewConfiguration : NSObject @property (nonatomic, assign) CGFloat spsb_cornerRadius; @property (nonatomic, strong, nullable) NSArray *spsb_images; @end @interface SPSBPreviewViewController : UIViewController @property (nonatomic, assign) bool spsb_previewing; @property (nonatomic, assign) NSUInteger spsb_maxPreview; @property (nonatomic, strong) CGRect(^spsb_getOriginalRect)(NSInteger index); - (void)showWithConfiguration:(SPSBPreviewConfiguration *)configuration currentImage:(UIImage *)currentImage index:(NSInteger)index; @end NS_ASSUME_NONNULL_END