ruipacheco
ruipacheco

Reputation: 16402

Xcode does not recognise methods added through categories

I've created a category to add methods to NSManagedObjectModel. Everything works fine except Xcode keeps throwing warnings about NSManagedObjectModel not implementing the methods. How can I force it to recognise the method?

Upvotes: 1

Views: 2390

Answers (1)

gcamp
gcamp

Reputation: 14662

Did you #import the .h of the category?

Upvotes: 9

Related Questions