There is a class method flavor: +conformsToProtocol:
https://developer.apple.com/documentation/objectivec/nsobject/1418893-conformstoprotocol
From the documentation:
Discussion
A class “conforms to” a protocol if it adopts the protocol or inherits from another class that adopts it. Classes adopt protocols by listing them within angle brackets after the interface declaration. For example, here MyClass adopts the (fictitious) AffiliationRequests and Normalization protocols:
@interface MyClass : NSObject <AffiliationRequests, Normalization>
A class also conforms to any protocols included in the protocols it adopts or inherits. Protocols incorporate other protocols in the same way classes adopt them. For example, here the AffiliationRequests protocol incorporates the Joining protocol:
@protocol AffiliationRequests <Joining>
If a class adopts a protocol that incorporates another protocol, it must also implement all the methods in the incorporated protocol or inherit those methods from a class that adopts it.
This method determines conformance solely on the basis of the formal declarations in header files, as illustrated above. It doesn’t check to see whether the methods declared in the protocol are actually implemented—that’s the programmer’s responsibility.
To specify the protocol required as this method’s argument, use the @protocol() directive:
BOOL canJoin = [MyClass conformsToProtocol:@protocol(Joining)];
Also note:
Performance Considerations
Calling this method in performance sensitive code can cause unwanted performance problems. conformsToProtocol: requires taking the Objective-C runtime lock and traversing the target’s class hierarchy to check for protocol conformance, which can take significant time.
Consider the following alternatives in your code:
Use respondsToSelector: to check for methods in the protocol instead, especially if you only need to check some of the protocol’s methods.
If you do need to use conformsToProtocol:, cache the result whenever possible, rather than calling this method repeatedly.