下载功能

//下载
//                    模拟器不支持这个下载功能,使用真机可以
UIApplication *app = [UIApplication sharedApplication];

if ([app  canOpenURL:[NSURL URLWithString:_applistmodel.itunesUrl]]) {
    [app  openURL:[NSURL  URLWithString:_applistmodel.itunesUrl]];
}

原文地址:https://www.cnblogs.com/er-dai-ma-nong/p/5045678.html