After successfully compiling the project in Xcode 6, I am unable to run it in the simulator with the above mentioned message. I did all the possible research, tried everythi
In case anyone has this problem in combination with cocoa pods, these steps helped me to solve this error (after few hours):
pod cache cleanrm -rf Pods (optionally rm Podfile.lock)rm -rf ~/Library/Developer/Xcode/DerivedData/...then try to Build & Run your project.
Note: SRC_ROOT can be found by entering the Navigator, clicking on the project, clicking on the project again from the project and targets list, going into Build Settings, scrolling all the way to the bottom to the User-Defined Section, and the SRC_ROOT will be labeled as PODS_ROOT. Take that and copy it verbatum into the Terminal and proceed with step 2 from the list above.
Hope it helps.