CNLiveLoginInputView.h 632 Bytes
//
//  CNLiveLoginInputView.h
//  CNLiveScioLive
//
//  Created by CNLive-zxw on 2018/9/20.
//  Copyright © 2018年 CNLive. All rights reserved.
//

#import <UIKit/UIKit.h>
typedef void(^VerificationCodeBlock)(void);

typedef NS_ENUM(NSInteger, CNLiveButtonType) {
    CNLiveButtonTypeNormal,
    CNLiveButtonTypeTextEntry,
    CNLiveButtonTypeCode,
};
@interface CNLiveLoginInputView : UIView
- (instancetype)initWithPic:(NSString *)pic placeholder:(NSString *)placeholder type:(CNLiveButtonType)type;

@property (nonatomic, strong, readonly) UITextField *textField;
@property (nonatomic, copy) VerificationCodeBlock block;

@end