Xcode's "Incomplete implementation" warning

Objective CXcode

Objective C Problem Overview


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?

Objective C Solutions


Solution 1 - Objective C

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

Solution 2 - Objective C

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).

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionpepsiView Question on Stackoverflow
Solution 1 - Objective CDan FView Answer on Stackoverflow
Solution 2 - Objective CJosh BrownView Answer on Stackoverflow