In iOS 4 & iOS 5 SDK , it is advised not to use [UIImage imageNamed:@"image.png"] due to memory leak and it is told to replace with [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:%@"image" ofType:@"png"]]]
Is it still applicable for iOS 6 SDK ? ( with ARC )