使 iPhone 模拟器在文件访问时区分大小写
众所周知,在 iPhone 模拟器中访问文件时,字符的大小写并不重要。是否可以设置 iPhone 模拟器不忽略大小写?
否则,我可以将代码中的文件路径与磁盘中的文件路径进行比较。那么使用什么方法可以从代码中获取与文件路径相对应的真实文件路径呢?
It's known that when accessing files in iPhone simulator the case of chars doesn't matter. Is it possible to setup iPhone Simulator to not ignore cases?
Otherwise I can compare file path from my code with file path from disk. Then what method to use to get real file path with right cases corresponding to file path from code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在构建阶段使用脚本解决了:
并添加了一些代码来查找 filelist.txt 中的文件路径:
I solved with script on build phase:
And added some code to find file path in filelist.txt:
您向 Apple 报告了该错误吗? iPhone 模拟器应该像设备一样区分大小写。
Did you report the bug to Apple? iPhone simulator should be case sensitive the same way the devices are.