//Get 服务器连接地址
#define TEST_URL @"http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo?mobileCode=%@&userID="
//Post 服务器连接地址
#define POST_URL @"http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo"
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
}
//get请求
- (IBAction)Get:(id)sender
{
//1.连接字符串
NSString *str1=[NSString stringWithFormat: TEST_URL,self.myNumberTF.text];
//2.拿到URL 字符串
NSURL *url= [NSURL URLWithString:str1];
//3.将连接封装成 请求对象
NSURLRequest *quest=[[NSURLRequest alloc]initWithURL:url];
//4.Get 请求代理
NSData *data=[NSURLConnection sendSynchronousRequest:quest returningResponse:nil error:nil];
//5.返回数据到Textviewd<展示信息>
self.JieGuoTextfield.text=[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
}
//Post请求
- (IBAction)Post:(id)sender
{
//1.创建URL 地址
NSURL *url =[NSURL URLWithString:POST_URL];
NSMutableURLRequest*requst=[[NSMutableURLRequest alloc]initWithURL:url];
[requst setHTTPMethod:@"POST"];
NSString *str=[NSString stringWithFormat:@"mobileCode=%@&userID=",self.myNumberTF.text];
NSData *data=[str dataUsingEncoding:NSUTF8StringEncoding];
[requst setHTTPBody:data];
NSData *myDatas =[NSURLConnection sendSynchronousRequest:requst returningResponse:nil error:nil];
self.JieGuoTextfield.text =[[NSString alloc]initWithData:myDatas encoding:NSUTF8StringEncoding];
}
无标题文章
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...