Frage

Older version of XCode, if you remove autorelease pool code in main.m the application used to crash. But now even if I dont have any statement such as @autoreleasepool in main.m then also the app works fine. What has changed? I tried with ARC and without ARC both

War es hilfreich?

Lösung

The Objective-C runtime installs an "autorelease pool of last resort" for you. It's best not to rely on it.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top