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 |