Is it possible to define a property with Class type that conforms to protocol?

889 Views Asked by At

For example, I have MyFancyData protocol. How can I specify that MyFancyDataClass property accepts only classes that conforms to this protocol.

@interface MyObject : NSObject

@property Class MyFancyDataClass;
2

There are 2 best solutions below

7
On

Do you mean something like this?

@interface MyObject : NSObject

@property (nonatomic, assign) Class<MyFancyData> cls;
@end
2
On
@property id<MyFancyData> myFancyDataClass;