Search Results

1
vote

is the main.m really the place, where the autorelease pool of the main run loop is created by every event?

No, this is the outermost function in your application, a regular C-style main(). Everything that the iPhone app does takes place in UIApplicationMain, including all the event handling. …