After deleting/adding some png files to project, i have got messages when building project.
\"file ProjectPath\\aaa\\xxx.png is missing from working copy.\"
The warning will disappear as soon as you commit your changes (Xcode 8).
Show on target->build phases -> copy Bundle Resources. and clean build folder command+shift+alt+k
I had the warnings, and also could not commit changes under XCode (using svn). All I had to do was restart XCode and the problem went away.
In my case, I had wrong data from my old projects in the simulator. Solved by reset content and settings in the simulator:
Simulator -> Reset content and settings...
Disable Source Control, clean build folder (Alt+Shift+Cmd+K
), then Enable Source Control again.
Xcode -> Preferences -> Source Control -> Enable Source Control
These warnings are not build warnings, they are about your SVN repository.
It is correct that the directories shown no longer exist, CocoaPods stores the headers in Pods/Headers/{Private,Public}
now. You have to update your working copy to reflect those changes.