12345678910111213141516171819 |
- //
- // KBSignSuccView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/9/28.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KBSignSuccView : UIView
- @property (nonatomic, copy) void (^sureClick)(void);
- - (instancetype)initWithFrame:(CGRect)frame text:(NSString *)text;
- @end
- NS_ASSUME_NONNULL_END
|