XYSkillVertificationApplyIntroduceView.h 482 B

12345678910111213141516171819202122232425
  1. //
  2. // XYSkillVertificationApplyIntroduceView.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/10/27.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface XYSkillVertificationApplyIntroduceView : UIView
  11. - (instancetype)initWithTitle:(NSString *)title content:(NSString *)content actionBlock:(void(^)(NSString *content))block;
  12. - (void)showWithView:(UIView *)view;
  13. - (void)dismiss;
  14. @end
  15. NS_ASSUME_NONNULL_END