Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error : "Category" declared as different kind of symbol in XCode 4 [closed]

Tags:

I have created my own classes Category.h and Category.m. Category class is inheriting NSObject. In my project there is only one class named Category.

At following line, it's showing me this error.

@interface Category : NSObject

Any help would be greatly appreciated. Thanks!

like image 925
iAsh Avatar asked Jul 25 '11 10:07

iAsh


1 Answers

If you check the documentation there's Category type which is:

typedef struct objc_category *Category;

You are getting this error because Category is defined as a pointer to struct objc_category.

If you want to avoid these kind of errors I suggest you adding your own prefix to all the classes you make in the project. Either from your name:

  • Your nickname: iAsh
  • ClassPrefix: IA
  • Example class: IACategory

or from project name:

  • Project: Awesome Project;
  • Class prefix: AP
  • Example class: APCategory

Also double-checking with documentation is always good. It's very rare that you'll hit existing class, but possible.

like image 94
Eimantas Avatar answered Sep 29 '22 23:09

Eimantas