Created
July 8, 2015 03:25
-
-
Save dabing1022/649b8583b48d7808ae55 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
| // 01. init method forbidden | |
| - (id)init { | |
| @throw [NSException exceptionWithName:NSInternalInconsistencyException | |
| reason:@"-init is not a valid initializer for the class Foo" | |
| userInfo:nil]; | |
| return nil; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// 04. Play sound