|  |  |  | 
|---|
|  |  |  | #import "WALoginResult.h" | 
|---|
|  |  |  | #import "WABindingResult.h" | 
|---|
|  |  |  | #import "WAAccount.h" | 
|---|
|  |  |  | #import "WAUserCenterResult.h" | 
|---|
|  |  |  | #import "WAAppUser.h" | 
|---|
|  |  |  | /*! | 
|---|
|  |  |  | @discussion 登录协议 | 
|---|
|  |  |  | 
|---|
|  |  |  | -(void)switchAcctDidCompleteWithResult:(WALoginResult*)result; | 
|---|
|  |  |  | @end | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /*! | 
|---|
|  |  |  | @discussion 用户中心 | 
|---|
|  |  |  | - - - | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @protocol WAUserCenterNoticeDelegate <NSObject> | 
|---|
|  |  |  | /*! | 
|---|
|  |  |  | @abstract 获取用户中心数据回调接口 | 
|---|
|  |  |  | @param result 用户中心数据信息 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | - (void)userCenterNoticeWithResult:(WAUserCenterResult *)result; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @end | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /*! | 
|---|
|  |  |  | @discussion 用户中心 | 
|---|
|  |  |  | - - - | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @protocol WAUserCenterNoticeUIDelegate <NSObject> | 
|---|
|  |  |  | /*! | 
|---|
|  |  |  | @abstract 用户中心界面关闭回调接口 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | - (void)userCenterNoticeClose; | 
|---|
|  |  |  | /*! | 
|---|
|  |  |  | @abstract 用户中心界面错误回调接口 | 
|---|
|  |  |  | @param error 用户中心错误信息 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | - (void)userCenterNoticeError:(NSError *)error; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @end | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /*! | 
|---|
|  |  |  | @discussion WAUserProxy 是用户模块的代理类。功能包括设置登录流程、登录、登出、绑定、解绑、查询当前用户绑定的第三方平台账户列表、切换账号、创建账号等等。 | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //+(NSString*)transferWithPlatform:(NSString *const)platform; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | + (void)getUserCenterNotice:(id<WAUserCenterNoticeDelegate>)delegate; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | + (void)showUserCenterNoticeUI:(id<WAUserCenterNoticeUIDelegate>)delegate; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /*! | 
|---|
|  |  |  | @discussion 处理UIApplicationDelegate的方法[-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions]传递过来的参数。 | 
|---|
|  |  |  | */ | 
|---|