美文网首页
利用NSURLConnection请求数据

利用NSURLConnection请求数据

作者: LiwaySun | 来源:发表于2017-09-06 22:50 被阅读5次

    // 0.请求路径

    NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/video"];

    // 1.创建请求对象

    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    // 2.发送请求

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

    // 解析JSON

    NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];

    // 获得视频的模型数组

    self.videos = [XMGVideo objectArrayWithKeyValuesArray:dict[@"videos"]];

    // 刷新表格

    [self.tableView reloadData];  // 注意刷新表格必须在主线程

    }];

    相关文章

      网友评论

          本文标题:利用NSURLConnection请求数据

          本文链接:https://www.haomeiwen.com/subject/pxemlttx.html