Skip to content

Instantly share code, notes, and snippets.

@onevcat
Created April 21, 2012 15:18
Show Gist options
  • Save onevcat/2437689 to your computer and use it in GitHub Desktop.
Save onevcat/2437689 to your computer and use it in GitHub Desktop.
intropection1
id obj = someInstance;
if ([obj isKindOfClass:someClass])
{
someClass *classSpecifiedInstance = (someClass *)obj;
// Do Something to classSpecifiedInstance which now is an instance of someClass
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment