lpw
2021-02-02 4ae86a682de87b00d87eb2783b51b2d0f844a798
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;
17 @property(nonatomic,strong)NSMutableArray* views;
18 @property(nonatomic,weak)id<WAAcctManagerDelegate>acctDelegate;
19 -(instancetype)initWithViewController:(id<WAAcctManagerDelegate>)viewController;
20 +(void)showAccountManager:(id<WAAcctManagerDelegate>)viewController;
21 -(void)newAcctDidCompleteWithResult:(WALoginResult*)result;
22 -(void)switchAcctDidCompleteWithResult:(WALoginResult*)result;
23 -(void)addMaskLayer:(BOOL)canRemove;
24 -(void)removeMaskLayer;
25 @end