I'm developing an iPhone and iPad application with Xcode 4.2 and latest SDK.
I have created a Tabbed Application without using ARC and I've found this on AppDelegate:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
UIViewController *viewController1, *viewController2;
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
viewController1 = [[[FirstViewController alloc] initWithNibName:@"FirstViewController_iPhone" bundle:nil] autorelease];
viewController2 = [[[SecondViewController alloc] initWithNibName:@"SecondViewController_iPhone" bundle:nil] autorelease];
} else {
viewController1 = [[[FirstViewController alloc] initWithNibName:@"FirstViewController_iPad" bundle:nil] autorelease];
viewController2 = [[[SecondViewController alloc] initWithNibName:@"SecondViewController_iPad" bundle:nil] autorelease];
}
self.tabBarController = [[[UITabBarController alloc] init] autorelease];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:viewController1, viewController2, nil];
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
return YES;
}
May I need to release viewController1, and viewController2?
autoreleasemessage. – user971401 Jan 25 '12 at 14:58autoreleasethat you have sent to your view controllers. Another thing worth mentioning is that althougharrayWithObjectsretains its content, it is returned in the autoreleased state itself, sotabBar's retain will be the only one keeping it from destruction. The way your view controllers would get released is as follows: tabBarController -> NSArray of its controllers -> your view controllers. – dasblinkenlight Jan 25 '12 at 15:03