Created
February 12, 2017 16:28
-
-
Save wh1pch81n/558037e425046436abeff27566902ca7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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