SettingsView *settings = [[SettingsView alloc] initWithNibName:@"SettingsView" bundle:[NSBundle mainBundle]];
settings.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self.navigationController presentModalViewController:settings animated:YES];
settings = nil;
[settings release];
Instruments claims that the following line is leaking
[self.navigationController presentModalViewController:settings animated:YES];
Can anyone help me out here? Thank you so much!