xcode下资源编译更新

xcode每次更改资源后,需要清理重新构建,资源才会更新。

项目配置 build phases  , Editor->add build phase->add run script ..  然后输入

find ${SRCROOT}/../Resources -exec touch {} \;

把run script 移动到 compile souces前面。   xcode5.1版本

你可能感兴趣的:(xcode)