I do not think this is safe, as some code is prohibited when ARC is enabled, for example, this method:
- (void)dealloc { [super dealloc]; }
And, of course, on release:
[exampleVariable release]
What can be present in projects without ARC.
user2047438
source share