Skip to content

Instantly share code, notes, and snippets.

@manucorporat
Created January 3, 2014 00:14
Show Gist options
  • Save manucorporat/8229938 to your computer and use it in GitHub Desktop.
Save manucorporat/8229938 to your computer and use it in GitHub Desktop.
C++'s dynamic_cast implemented for Objective-C
#define DYNAMIC_CAST(__CLASS__, __OBJ__) ((__CLASS__*)([__OBJ__ isKindOfClass:[__CLASS__ class]] ? __OBJ__ : nil))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment