| 123456789101112131415161718192021 |
- //
- // YBScrollImageView.h
- // YBHiMo
- //
- // Created by YB007 on 2021/8/20.
- // Copyright © 2021 YB007. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^YBImageViewBlock)(NSArray *array);
- @interface YBScrollImageView : UIView
- - (instancetype)initWithImageArray:(NSArray *)array andIndex:(NSInteger)index andMine:(BOOL)ismine andBlock:(YBImageViewBlock)block;
- -(void)hideDelete;
- @end
- NS_ASSUME_NONNULL_END
|