@@ -66,10 +66,17 @@ * * \return A boolean whether the class conforms to the specified protocol */ + (BOOL)conformsToProtocol: (Protocol*)protocol; +/** + * \param selector The selector for which the method should be returned + * + * \return The implementation of the instance method for the specified selector + */ ++ (IMP)instanceMethodForSelector: (SEL)selector; + /** * Replace a method implementation with another implementation. * * \param selector The selector of the method to replace * \param imp The new implementation for the method