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;
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;
Do you mean something like this?