跳转到AppStore下载

    //跳转到appstore界面
    if (self.dItem.itunesUrl) {
        //[[UIApplication sharedApplication] openURL:[NSURL URLWithString:self.dItem.itunesUrl]];
        NSString *url = [@"One://" stringByAppendingString:@"123456"];
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
    }

原文地址:https://www.cnblogs.com/liaods/p/4788775.html