ibtool和本地化存在一个非常奇怪的问题:
我使用以下命令导出字符串文件:
ibtool --export-strings-file XibLoc.strings SomeXib.xib
然后我尝试将字符串导入到Xib文件中以生成本地化版本:
ibtool --strings-file XibLoc.strings --write NewXib.xib SomeXib.xib
这是用于xib定位的相当标准的技术,但是会出现错误:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.ibtool.errors</key>
<array>
<dict>
<key>description</key>
<string>The stringsfile XibLoc.strings does not appear to contain valid data for UTF-16 string encoding.</string>
</dict>
</array>
</dict>
</plist>
那是WTF吗? ibtool以UTF-16编码导出数据,结果证明即使我什至不更改导出文件中的任何内容也无法将其导回。有人知道那里发生了什么吗?还是我做错了什么?
最佳答案
ibtool对文件参数语法过于挑剔。在ibtool 5.0中甚至更糟。查看/复制我的Radar on this。
使它对我有用的唯一方法(假设您的本地化版本提供了主XIB)是:
cd <project folder>
ibtool --strings-file fr.lproj/SomeXib.strings --write fr.lproj/SomeXib.xib en.lproj/SomeXib.xib
请勿在路径名中添加任何引号或“..”等,因为ibtool在这种情况下可能会失败。
关于iphone - 为什么ibtool无法将UTF-16字符串文件导入到nib中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4396644/