Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们的 iPhone 应用程序已经在 App Store 上,在某些国家/地区运行良好,但在巴西、墨西哥等其他国家/地区崩溃。有什么方法可以在我的模拟器中模拟不同的国家/地区吗?我尝试通过更改位置。现在获取崩溃日志很困难。
在您的测试设备中转到设置-区域设置。使用不同的语言环境进行测试。如果您的应用程序涉及日期格式化程序/日期选择器,则可能会出现这些问题。
不同的语言环境有不同的日期格式。即可能是 24 小时或 12 小时,具体取决于地区。
在此处设置日期格式化程序的语言环境是代码。
NSLocale *enUSPOSIXLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"]; [dateFormatter setLocale:enUSPOSIXLocale];