- 通过一下方式,可以根据app的系统语言获取对语言版本信息
- 1.发起请求
-
//1、填写自己App的ID NSString *appUrl = [[NSString alloc] initWithFormat:@"https://itunes.apple.com/lookup?id=12345678"]; NSString *language = [HYLanguageManager currentLanguage]; if ([language containsString:@"zh-Hans"] || [language containsString:@"zh_CN"]) { appUrl = @"https://itunes.apple.com/search?term=app名称&country=cn&entity=software"; } if ([language containsString:@"ko"]) { appUrl = @"https://itunes.apple.com/search?term=app名称&country=kr&entity=software"; } if ([language containsString:@"ja"]) { appUrl = @"https://itunes.apple.com/search?term=app名称&country=jp&entity=software"; } if ([language containsString:@"zh-Hant"] || [langua
iOS - 如何从appStore获取app版本信息
最新推荐文章于 2025-05-14 17:04:47 发布