12345678910111213141516171819202122232425 |
- //
- // XYSkillVertificationApplyIntroduceView.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/10/27.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface XYSkillVertificationApplyIntroduceView : UIView
- - (instancetype)initWithTitle:(NSString *)title content:(NSString *)content actionBlock:(void(^)(NSString *content))block;
- - (void)showWithView:(UIView *)view;
- - (void)dismiss;
- @end
- NS_ASSUME_NONNULL_END
|