Вопрос

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

Это было полезно?

Решение

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top