lpw
2022-03-14 16bbc0ff237f290d85e9095b4859dc3e7885be15
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
//
//  WASDKAccountUI.h
//  test
//
//  Created by wuyx on 16/1/12.
//  Copyright © 2016年 GHW. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import <WASdkIntf/WASdkIntf.h>
#import <WACommon/WACommon.h>
@interface WASdkAccountMainUI : UIControl
@property(nonatomic,strong)UILabel* titleLab;
@property(nonatomic,strong)UIView* separator;
@property(nonatomic,strong)UIView* contentView;
@property(nonatomic,strong)UIButton* backBtn;
@property(nonatomic,strong)NSMutableArray* views;
@property(nonatomic,weak)id<WAAcctManagerDelegate>acctDelegate;
-(instancetype)initWithViewController:(id<WAAcctManagerDelegate>)viewController;
+(void)showAccountManager:(id<WAAcctManagerDelegate>)viewController;
-(void)newAcctDidCompleteWithResult:(WALoginResult*)result;
-(void)switchAcctDidCompleteWithResult:(WALoginResult*)result;
-(void)addMaskLayer:(BOOL)canRemove;
-(void)removeMaskLayer;
@end