Skip to content

Instantly share code, notes, and snippets.

@tamaki-shingo
Created May 7, 2013 14:06
Show Gist options
  • Save tamaki-shingo/5532822 to your computer and use it in GitHub Desktop.
Save tamaki-shingo/5532822 to your computer and use it in GitHub Desktop.
対象オブジェクトに特定のメソッドが存在するかを確認する。
if ([hogeImageView respondsToSelector:@selector(copyWithZone:)]) {
LOG(@"王大人,copyWithZoneメソッド確認!");
}else{
LOG(@"お前のcopyWithZone:ねーから!wwww");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment