Skip to content

Instantly share code, notes, and snippets.

@7gano
Created April 5, 2013 01:33
Show Gist options
  • Save 7gano/5315930 to your computer and use it in GitHub Desktop.
Save 7gano/5315930 to your computer and use it in GitHub Desktop.
//クラス(すべて)に追加
[UIView insertPreprocessToSelector:@selector(method:)
block:
^{
NSLog(@"YES");
}];
//このインスタンスだけに追加
[view insertPreprocessToSelector:@selector(method:)
block:
^{
NSLog(@"YES");
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment