JPRequest - 发送和接收POST与GET数据至WebService
jopen
10年前
JPRequest 是简单的多线程 Objective-C 对象,用来发送 POST 数据到 webservice 或者从 webservice 接收 GET 数据。
-(void)yourFunctionName { // POST request example NSString *replyPOST = [JPRequest postRequestWithUrl:@"http://www.example.com" andPostData:@"parameter1=1¶meter2=2"]; // GET request example NSString *replyGET = [JPRequest getRequestWithUrl:@"http://www.example.com"]; }