跳转 App Store 评分 IOS7及其他系统版本

//iOS7和其他系统版本跳转链接不一样

- (void)clickUrl:(id)sender

{

    UIButton *bt = (UIButton *)sender;

    

    NSString *str = @"";

    

    if( ([[[UIDevice currentDevice] systemVersion] doubleValue]>=7.0))

    {

        str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%d",bt.tag];

        

    }else

    {

        str = [NSString stringWithFormat:

                         @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d",

                         bt.tag ];

    }


    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

}

 

跳转 App Store 评分 IOS7及其他系统版本,布布扣,bubuko.com

跳转 App Store 评分 IOS7及其他系统版本

上一篇:手动封装js原生XMLHttprequest异步请求


下一篇:cceditbox和cocostudio联合界面点击事件无响应问题,Android中创建文件夹问题