Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 95 down vote accepted

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

share|improve this answer
3  
Ahh I missed that tiny little arrow. Thanks! – pepsi Feb 7 '12 at 19:13
7  
bless you, my child, so obvious in retrospect! I've been doing "binary search" uncommenting of half my headers at a time trying to see when the warning disappears! – hkatz May 14 '12 at 15:04
You... are my hero. I'd searched for this several times before and never gotten an answer. So simple... – Cyprus106 Dec 26 '12 at 22:34

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.