123456789101112131415161718192021 |
- //
- // KBPhoneFieldView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/21.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^NextEnable) (BOOL nextEnable);
- @interface KBPhoneFieldView : UIView
- @property (nonatomic,copy) NextEnable nextEnable;
- - (instancetype)initWithFrame:(CGRect)frame wx_union_id:(NSString *)union_id;
- - (NSString *)getPhoneText;
- - (NSString *)getCodeText;
- @end
|