Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Incomplete implementation warning

Tags:

xcode

ios

Is there a way of having Xcode tell me what function is not implemented correctly that is triggering its "incomplete implementation" warning?

like image 501
Kurru Avatar asked May 10 '12 08:05

Kurru


Video Answer


2 Answers

Sometimes method names are not shown in the in-code warnings. In that case:

Go to the Issue navigator (the warning sign in the left pane), expand the warning, click on "Method declared here".

Xcode issue navigator: Incomplete Implementation

First, click the little arrow (1), then click one of the method names (2).

like image 104
fzwo Avatar answered Oct 26 '22 09:10

fzwo


If you click on the warning sign that Xcode displays at the very end of the file which is missing a method definition, you will see an additional message telling you which method it is.

enter image description here

like image 33
sergio Avatar answered Oct 26 '22 07:10

sergio