Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode's "Incomplete implementation" warning

Sometimes I forget to implement a method in one of my classes, and Xcode displays a "Incomplete implementation" warning.

Is there any way in Xcode to see which method implementation is missing?

like image 896
pepsi Avatar asked Feb 07 '12 19:02

pepsi


2 Answers

In your error view (command+4, by default, or the 4th tab in the left hand view) you can click the little arrow next to the warning, and it should tell you

Method definition for 'blah' not found

like image 110
Dan F Avatar answered Oct 21 '22 13:10

Dan F


I've found that sometimes the Log Navigator is the only way to show the actual problem - in at least one case, the error view didn't help me. To see the Log Navigator, you can use View > Navigators > Show Log Navigator (or ⌘7 by default).

like image 26
Josh Brown Avatar answered Oct 21 '22 13:10

Josh Brown