When not using ARC, you get a warning when not calling [super dealloc] in your dealloc method.
I\'m trying to implement something similar with a class that gets subc
NS_REQUIRES_SUPER
is the modern expression for
__attribute__((objc_requires_super))