アイテムでアラートビューを作成してロードできます..
- (void)viewDidLoad {
// get your vairables from the defaults
NSString *variable1 = [[NSUserDefaults standardUserDefaults] stringForKey:@"variable1"];
NSString *variable2 = [[NSUserDefaults standardUserDefaults] stringForKey:@"variable2"];
// build your alert mesage
NSString *alertMessage = [NSString stringWithFormat:@"the variables you are looking for are %@ and %@",variable1,variable2];
// create the alert view for display
UIAlertView *alertmsg = [[UIAlertView alloc] initWithTitle:@"Variables:" message:alertMessage delegate:self cancelButtonTitle:@"ok" otherButtonTitles: nil];
// display the alert
[alertmsg show];
[super viewDidLoad];
}