We used below code to set image in image view,
@autoreleasepool {
UIImageView *titleView = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"ImgTitle" ofType:@"png"]]];
}
Instruments shows memory leak in above two lines. We checked through Xcode 5.0.1 to iOS7.
Anyone please suggest to resolve that issue.