CNLiveBoxWIFITipAlertView.h
847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// CNLiveBoxTipAlertView.h
// CNLiveNetAdd
//
// Created by 梁星国 on 2019/9/19.
// Copyright © 2019 cnlive. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface CNLiveBoxWIFITipAlertView : UIView
@property (strong, nonatomic) UIView *bgView;
@property (strong, nonatomic) UILabel *contenL;
@property (strong, nonatomic) UITextField *enterTF;
@property (strong, nonatomic) UIButton *showPWBtn;
@property (strong, nonatomic) UIView *bottomLineV;
@property (strong, nonatomic) UIButton *cancleBtn;
@property (strong, nonatomic) UIButton *sureBtn;
@property (strong, nonatomic) UIView *horizontalLine;
@property (strong, nonatomic) UIView *verticalLine;
+ (CNLiveBoxWIFITipAlertView *)showAlertAddedTo:(UIView *)view;
- (void)showAlerView;
- (void)hiddenAlerView;
@end
NS_ASSUME_NONNULL_END