Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @interface MyClass<__covariant T> : NSObject
  2.  
  3. -(void)myMethod:(T)parameter;
  4.  
  5. @end
  6.  
  7. @implementation MyClass
  8.  
  9. -(void)myMethod:(id)parameter {}
  10.  
  11. @end