I'm getting a warning into my Objective-c project. The warning is:
Category is implementing a method which will also be implemented by its primary class.
I'm getting this warning into a class of library XMPPFramework XMPP on github
I have the next function in a XMPPMessage.h class
- (BOOL)isGroupChatMessage;
And I'm renaming the same named function in the class XMPPMessage +XEP0045.h
How can I delete the warning? What changes will you need to make in the inheritance of the functions?