20 lines
512 B
Objective-C
20 lines
512 B
Objective-C
//
|
|
// TLNetworking.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 16/4/3.
|
|
// Copyright © 2016年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TLNetworking : NSObject
|
|
|
|
+ (NSURLSessionDataTask *)postUrl:(NSString *)urlString
|
|
parameters:(id)parameters
|
|
success:(void (^)(NSURLSessionDataTask *task, id responseObject))success
|
|
failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure;
|
|
|
|
|
|
@end
|