Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There are several places where this error could be arising. I would do the following to start searching for the problem:</p> <ol> <li>Search the project folder with finder and see if anywhere else the file "iContactsGridCell.h" exists. Or if any two files exist somewhere.</li> <li>Make sure that you don't have two Objects that are of Class iContactsGridCell that share the same name for example:</li> </ol> <p>iContactsGridCell *myObj; iContactsGridCell *myObj;</p> <ol> <li><p>Make sure your not doing anything like this: #import "iContactsGridCell <strong>.m</strong>"</p></li> <li><p>Or like this: #import "iContactsGridCell.h" #import "iContactsGridCell.h"</p></li> <li>Make sure your not re-declaring a class (including ones that Apple has provided in their frameworks)</li> </ol> <p><strong>Main Point:</strong> That's all I can think of off the top of my head. But the thing to remember is that somewhere in your project resides two objects, class declarations etc. That are the same. And the compiler is complaining because of it.</p> <p><strong>Why the Compiler would complain (more info):</strong> While this information is really "unnecessary" it's good practice as a programmer to understand what's going on under the hood and will often help debug, so here's a little info on compilers:</p> <p>Remember that a Compiler (while much more complex) is a program just like the ones that you create using it. One of the steps in most (if not all) compilers go through at one point or another reading code is creating "Symbols or Keys" for each variable, class, struct ect. So, at some point the compiler reached a line of code that "repeats / duplicates" somewhere else. So the "Key/Symbol" creation process done routine by the compiler fails.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload