美文网首页
mineType 文件类型

mineType 文件类型

作者: test_java | 来源:发表于2016-09-20 13:25 被阅读0次
    -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    //获取session对象
    NSString *urlStr = @"http://upload.jianshu.io/collections/images/229578/1448374496.jpg?imageMogr/thumbnail/300x300";
    
    NSURLSession *session = [NSURLSession sharedSession];
    
    NSURL *url = [NSURL URLWithString:urlStr];
    
    NSURLSessionTask *task = [session dataTaskWithURL:url completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        NSLog(@"%@",response.MIMEType);
    }];
    //启动任务
    [task resume];
    }
     输出:image/png
    
    mineType 文件类型

    相关文章

      网友评论

          本文标题:mineType 文件类型

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