Reputation: 21
Objctive-C declaration:
+ (instancetype)queryWithClass:(Class<LYRQueryable>)queryableClass;
How to bind in c# the parameter of type Class<LYRQueryable>
?
I have binding for LYRQueryable
, but how to declare/pass the backended objective-c class for it?
Upvotes: 1
Views: 57
Reputation: 19345
Use the ObjCRuntime.Class
type:
NSObject Query (Class queryableClass);
Upvotes: 0