iphone-common-codes-ccteam源代码 CCHttp.h

//
// CCHttp.h
// CCFC
//
// Created by xichen on 11-12-21.
// Copyright 2011 ccteam. All rights reserved.
//


#import <Foundation/Foundation.h>




@interface CCHttp : NSObject
{

}


// send a common synchronous GET request for a url, returns the recieved data
+ (NSData *)sendSynchronousGETRequest:(NSString *)urlStr
withResponse:(NSHTTPURLResponse **)response;




// send a common synchronous POST request for a url, returns the recieved data
+ (NSData *)sendSynchronousPOSTRequest:(NSString *)urlStr
withBody:(NSData *)body
withResponse:(NSHTTPURLResponse **)response;




// send a common asynchronous GET request for a url
+ (NSURLConnection *)sendAsynchonousGETRequest:(NSString *)urlStr
withDelegate:(id)delegate;


// send a common asynchronous POST request for a url
+ (NSURLConnection *)sendAsynchonousPOSTRequest:(NSString *)urlStr
withBody:(NSData *)body
withDelegate:(id)delegate;




+ (NSString *)localizedStringForStatusCode:(int)statusCode;


@end

googlecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCHttp.h

posted @ 2011-12-31 09:54  cc_team  阅读(228)  评论(0编辑  收藏  举报