码迷,mamicode.com
首页 > 移动开发 > 详细

ios开发-常用网络

时间:2014-10-22 23:41:10      阅读:506      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   sp   数据   on   log   cti   代码   

直接上代码

示例:

-(void)touchesBeGan:(NSSet *)touches withEvent:(UIEvent *)event

{

  //1.url

  NSURL *url = [NSURL URLWithString:@"http://m.baidu.com"]‘

  //2.request

  NSURLRequest *request = [NSURLRequest requestWithURL:url];

  //3.发送网络连接 获取二进制数据

  [NSURLConnection sendAsynchronouRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response,NSData *data,NSError *connectionError){

  //在开发http访问,通常会把返回的二进制数据变成字符串,以便于调试

  NSString *html = [NSString alloc]initWithData:data encoding:NSUTF8StringEncoding

;

  NSLog(@"%@",html);

}];

}

ios开发-常用网络

标签:http   io   os   sp   数据   on   log   cti   代码   

原文地址:http://www.cnblogs.com/gtbo/p/4044673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!