SettingsViewController* settings = [[SettingsViewController alloc] init];
UINavigationController *settingsNav = [[UINavigationController alloc] initWithRootViewController:settings];
[navigationController presentModalViewController:settingsNav animated:YES];
[settingsNav dismissModalViewControllerAnimated:YES];
Если SettingsViewController - это UIViewController, то:
SettingsViewController* settings = [[SettingsViewController alloc] init];
[self presentModalViewController:settings animated:YES];
[settings dismissModalViewControllerAnimated:YES];