以下是我的代码:
- (NSString *)fileSizeDescriptionForFileAtPath:(NSString *)filePath {
NSError* error;
NSDictionary *fileDictionary = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath
error: &error];
NSNumber *size = [fileDictionary objectForKey:NSFileSize];
NSString *desc = [NSByteCountFormatter stringFromByteCount:size.longLongValue
countStyle:NSByteCountFormatterCountStyleFile];
return desc;
}
此代码是否会正确格式化任何本地化的文件大小?
我在NSByteCountFormatter
文档中找不到格式化字符串已本地化的引用。
感谢您的任何建议。
答案 0 :(得分:0)
所以,我尝试使用多个语言环境的上述代码,结果看起来完全本地化。