Files
peko-ios/YuMi/Modules/YMMine/View/SubViews/CPBindingAnimation.h
2024-09-23 18:01:54 +08:00

25 lines
404 B
Objective-C

//
// CPBindingAnimation.h
// YuMi
//
// Created by P on 2024/9/23.
//
#import <UIKit/UIKit.h>
@class AttachmentModel;
NS_ASSUME_NONNULL_BEGIN
@interface CPBindingAnimation : UIView
@property (nonatomic, strong) AttachmentModel *cpAttachment;
+ (void)display:(UIView *)superView
with:(AttachmentModel *)attachment
complete:(void(^)(void))complete;
@end
NS_ASSUME_NONNULL_END