码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-08-14 01:05:37      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   

//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及其他系统版本

标签:style   blog   color   os   io   for   ar   div   

原文地址:http://www.cnblogs.com/iflewless/p/3911277.html

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