26 lines
544 B
Objective-C
26 lines
544 B
Objective-C
//
|
|
// IfishUserDataUnity.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/4/7.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishUserDataUnity : NSObject
|
|
+(IfishUserDataUnity*)shareDataInstance;
|
|
|
|
/**
|
|
* 登陆验证成功 返回 from登录界面
|
|
*/
|
|
|
|
-(void)userloginValidationSuccsess:(NSDictionary *)dataDic phoneNumber:(NSString *)phoneNumber passward:(NSString *)password;
|
|
/**
|
|
* 登陆验证成功 返回 自动登录
|
|
*/
|
|
-(void)userAutologinSuccsess:(NSDictionary *)dataDic;
|
|
|
|
|
|
@end
|