美文网首页
resource fork, Finder informatio

resource fork, Finder informatio

作者: ThinkerH | 来源:发表于2017-04-09 21:06 被阅读23次

今天升级了下Xcode,升级到了Xcode 8.3.1,bulid,坑爹的问题来了。。。

报错截图如下:


问题截图

估计是资源文件问题,google了下,在stackoverflow上找到两篇类似的问题。发现,通过下面的三个终端命令,在工程根目录下依次运行,然后clean,rebuld。。。Done!

find . -type f -name '*.jpeg' -exec xattr -c {} \;
find . -type f -name '*.png' -exec xattr -c {} \;
find . -type f -name '*.tif' -exec xattr -c {} \;

该问题应该是UI切图,使用photoshop保存图片时的属性设置问题。
find . -type f -name '*.png' -exec xattr -c {} \;
命令,是找到工程里面所有的png格式的图片并移除它们坑爹的属性问题。

相关资料:

相关文章

网友评论

      本文标题:resource fork, Finder informatio

      本文链接:https://www.haomeiwen.com/subject/fmkjattx.html