1. 程式人生 > >warning: skipping copy phase strip, binary is code signed: .....

warning: skipping copy phase strip, binary is code signed: .....

The solution would be to go to the build settings of your application target (not the help tool target) and set "Strip Debug Symbols During Copy" to "No". This is the key COPY_PHASE_STRIP.

COPY_PHASE_STRIP screenshot

Activating this setting causes binary files which are copied during the build (e.g., in a Copy Bundle Resources or Copy Files build phase) to be stripped of debugging symbols. It does not cause the linked product of a target to be stripped (use Strip Linked Product for that). 

The main problem is that you can not strip debug symbols from a signed executable. This is why you must skip this step.