1进入appstore中指定的应用
NSString str = [NSString stringWithFormat:
@"itms-apps://axitunesapplecom/WebObjects/MZStorewoa /wa/viewContentsUserReviewstype=Purple+Software&id=%d",
myAppID ];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
其中myAppID为itunesconnect中的应用程序id
2进入首页
NSString str = [NSString stringWithFormat:
@"itms-apps://itunesapplecom/WebObjects/MZStorewoa/wa/viewSoftwareid=%@",
m_myAppID ];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
1、NSString appstoreUrlString = [NSString stringWithFormat: @"itms-apps://itunesapplecom/WebObjects/MZStorewoa/wa/viewContentsUserReviewstype=Purple+Software&id=%@", m_appleID ]; NSURL url = [NSURL URLWithString:appstoreUrlString]; if ([[UIApplication sharedApplication] canOpenURL:url]) { [[UIApplication sharedApplication]openURL:url]; } else { NSLog(@"can not open"); }2、btn_savesetOnClickListener(new ViewOnClickListener(){ @Override public void onClick(View view) { Intent intent = new Intent(当前的Activitythis, 要跳转的Activityclass); startActivity(intent); } });其中btn_save就是button按钮
需要的可能就是AppleLocale和AppleLanguages这两个key来进行判断。AppleLanguages的第一个值为当前语言。
货币的判断,价格的转化这个得你自己计算。
api能做的就是获取当前机器的区域或者语言等,根据这些信息你来自行判断显示什么货币。
这些信息都在NSUserDefaults中。
NSUserDefaults defaults = [NSUserDefaults standardUserDefaults];
for (NSString key in [[defaults dictionaryRepresentation] keyEnumerator])
{
NSLog(@"%@ = %@",key,[defaults objectForKey:key]);
}
以上就是关于如何在iOS应用内打开AppStore全部的内容,包括:如何在iOS应用内打开AppStore、如何点击按钮跳转到Appstore的评论页面、ios如何获取用户当地AppStore的货币等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)