1.返回当前语言的函数变了,如果用以前的,就会多个location后缀,,比如在中国你使用英语,返回“en-CN”,要想只得到language,用如下方法
string SystemHelper::getCurrentLanguage()
{
// NSString* value = [[NSLocale preferredLanguages] objectAtIndex:0];
NSString *value = [[[NSBundle mainBundle] preferredLocalizations] objectAtIndex:0];
return [value UTF8String];
}
2.不知道为什么要添加网络权限一说。。可能是处于安全性考虑
step1.在info.plist文件添加NSAppTransportSecurity,类型为Dictionary
step2.在上面的属性下添加NSAllowsArbitraryLoads,类型为Boolean,值设为YES
时间: 2024-12-02 14:06:52