用于更改 Xcode 4 中文本编码的脚本
我有一组以 ISO Latin 1 格式保存的 .txt 文件。 在将它们放入我的应用程序之前,我必须将它们转换为 UTF-8
是否可以在 Xcode 4 中为此任务创建脚本?
I have a set of .txt files saved in ISO Latin 1.
Before I put them in my application I have to convert them to UTF-8
Is it possible to create a script for this task in Xcode 4 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以设置调用
iconv
的 shell 脚本构建阶段。您的“发件人”编码为CSISOLATIN1
,“收件人”编码为UTF-8
。You can set up a shell script build phase that invokes
iconv
. Your 'from' encoding would beCSISOLATIN1
and your 'to' encoding would beUTF-8
.谢谢!
我制作了一个 shell 脚本,它运行得很好:
Thanks!
I made a shell script and it works very well :