Created
August 20, 2013 17:14
-
-
Save anonymous/6284357 to your computer and use it in GitHub Desktop.
Simulate an abstract method in Objective-C
This file contains 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
// Simulate abstract method | |
-(CGFloat)abstractFoo { | |
[self doesNotRecognizeSelector:_cmd]; | |
return 0.0f; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment