CNLiveUpdateTelView.h
899 Bytes
//
// CNLiveUpdateTelView.h
// CNLiveSettingModule
//
// Created by CNLive-zxw on 2019/3/21.
// Copyright © 2019年 cnlive. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class CNLiveUpdateTelView;
@protocol CNLiveUpdateTelViewDelegate <NSObject>
- (void)selectCountry:(CNLiveUpdateTelView *)view;
- (void)bindingSuccess:(CNLiveUpdateTelView *)view;
@end
@interface CNLiveUpdateTelView : UIView
@property (nonatomic, weak) id<CNLiveUpdateTelViewDelegate> delegate;
@property (nonatomic, strong) UILabel *countryName;
@property (nonatomic, strong) UILabel *countryCode;
@property (nonatomic, strong) UITextField *telTF;
@property (nonatomic, strong) UITextField *codeTF;
@property (nonatomic, assign) BOOL gotVerificationCode;
@property (nonatomic, assign) BOOL gotVerificationCodeIng;
@property (nonatomic, copy) NSString *codeNum;
@end
NS_ASSUME_NONNULL_END