lpw
2023-06-14 0bf4fbe23108215661378c9ac0561a1ae309c0aa
commit | author | age
6e1425 1 //
H 2 //  WASDKAccountUI.h
3 //  test
4 //
5 //  Created by wuyx on 16/1/12.
6 //  Copyright © 2016年 GHW. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10 #import <WASdkIntf/WASdkIntf.h>
11 #import <WACommon/WACommon.h>
12 @interface WASdkAccountMainUI : UIControl
13 @property(nonatomic,strong)UILabel* titleLab;
14 @property(nonatomic,strong)UIView* separator;
15 @property(nonatomic,strong)UIView* contentView;
16 @property(nonatomic,strong)UIButton* backBtn;
0bf4fb 17 @property(nonatomic,strong)UIView* btn_sepa;
L 18 @property(nonatomic,strong)UIImageView* backIcon;
6e1425 19 @property(nonatomic,strong)NSMutableArray* views;
H 20 @property(nonatomic,weak)id<WAAcctManagerDelegate>acctDelegate;
21 -(instancetype)initWithViewController:(id<WAAcctManagerDelegate>)viewController;
22 +(void)showAccountManager:(id<WAAcctManagerDelegate>)viewController;
23 -(void)newAcctDidCompleteWithResult:(WALoginResult*)result;
24 -(void)switchAcctDidCompleteWithResult:(WALoginResult*)result;
25 -(void)addMaskLayer:(BOOL)canRemove;
26 -(void)removeMaskLayer;
27 @end