Конечно -
int userPref = [[NSUserDefaults standardUserDefaults] integerForKey:@"theme_pref"];
UIViewController *controller;
if (userPref == kOption1)
controller = [[UIViewController alloc] initWithNibName:@"controller1" bundle:nil];
else if (userPref == kOption2)
controller = [[UIViewController alloc] initWithNibName:@"controller2" bundle:nil];
Замените UIViewController на имя вашего класса.Кроме того, это всего лишь один из способов получения предпочтений - используйте все, что вы хотите.