28 lines
886 B
Objective-C
28 lines
886 B
Objective-C
//
|
|
// TLRootProxy.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 16/3/13.
|
|
// Copyright © 2016年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TLRootProxy : NSObject
|
|
|
|
- (void)requestClientInitInfoSuccess:(void (^)(id))clientInitInfo
|
|
failure:(void (^)(NSString *))error;
|
|
|
|
- (void)userLoginWithPhoneNumber:(NSString *)phoneNumber
|
|
password:(NSString *)password
|
|
success:(TLBlockRequestSuccessWithDatas)success
|
|
failure:(TLBlockRequestFailureWithErrorMessage)failure;
|
|
|
|
|
|
- (void)userRegisterWithPhoneNumber:(NSString *)phoneNumber
|
|
password:(NSString *)password
|
|
success:(TLBlockRequestSuccessWithDatas)success
|
|
failure:(TLBlockRequestFailureWithErrorMessage)failure;
|
|
|
|
@end
|