I have an NSMutableArray
in which i want to add those objects which conforms the ObjectType
. Is there any way i can get the ObjectType
declared using light weight generics so when adding an object i can check whether the object is about to insert is ObjectType
; if yes insert it else just forget it.
Thanks.