008 在Xcode4.5上创建IOS6.0应用 (多视图应用程序)
#import "YellowViewController.h"
#import "BlueViewController.h"
@implementation BlueViewController-(IBAction)blueclick:(id)sender{ UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"紧急提示" message:@"亲爱的我想你." delegate:nil cancelButtonTitle:@"想你妹" otherButtonTitles:@"我也想你", nil]; [alert show]; [alert release];}- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{ self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self;}- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view from its nib.}- (void)didReceiveMemoryWarning{ [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.}@end