码迷,mamicode.com
首页 > 其他好文 > 详细

获取返回值MIMEType的工具方法

时间:2015-12-23 22:53:56      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:

为了获取不同文件的MIMEType,特意抽取了一个工具类,希望对大家有帮助:

- (NSString *)MIMEType:(NSURL *)url
{
    //1.创建一个请求
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    //2.发送请求(返回响应)
    NSURLResponse *response = nil;
    [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:nil];
    //3.获得MIMEType
    return response.MIMEType;
}

 

获取返回值MIMEType的工具方法

标签:

原文地址:http://www.cnblogs.com/ZMiOS/p/5071292.html

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