@@ -56,11 +56,11 @@ /** * \param protocol The protocol which should be checked for conformance * * \return A boolean whether the class conforms to the specified protocol */ -+ (BOOL)conformsTo: (Protocol*)protocol; ++ (BOOL)conformsToProtocol: (Protocol*)protocol; /** * Replace a method implementation with another implementation. * * \param selector The selector of the method to replace @@ -105,32 +105,32 @@ /** * \param class The class whose kind is checked * * \return A boolean whether the object is of the specified kind */ -- (BOOL)isKindOf: (Class)class; +- (BOOL)isKindOfClass: (Class)class; /** * \param selector The selector which should be checked for respondance * * \return A boolean whether the objects responds to the specified selector */ -- (BOOL)respondsTo: (SEL)selector; +- (BOOL)respondsToSelector: (SEL)selector; /** * \param protocol The protocol which should be checked for conformance * * \return A boolean whether the objects conforms to the specified protocol */ -- (BOOL)conformsTo: (Protocol*)protocol; +- (BOOL)conformsToProtocol: (Protocol*)protocol; /** * \param selector The selector for which the method should be returned * * \return The implementation for the specified selector */ -- (IMP)methodFor: (SEL)selector; +- (IMP)methodForSelector: (SEL)selector; /** * Compare two objects. * Classes containing data (like strings, arrays, lists etc.) should reimplement * this!