Skip to content

Instantly share code, notes, and snippets.

@wh1pch81n
Created February 12, 2017 16:28
Show Gist options
  • Save wh1pch81n/558037e425046436abeff27566902ca7 to your computer and use it in GitHub Desktop.
Save wh1pch81n/558037e425046436abeff27566902ca7 to your computer and use it in GitHub Desktop.
// SWIFT
class SpecialRed: SpecialProtocol<ViewController> {
override func specialMethod(_ viewController: ViewController) {
// customization
}
}
// Objective-C
@interface SpecialBlue: SpecialProtocol<ViewController *>
@end
@interface SpecialBlue
-(void)specialMethod:(ViewController *)viewController
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment