- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self ShowMessage:@"警告" msg:@"这是一个警告对话框"];
}
-(void)ShowMessage:(NSString *) title msg:(NSString *) message
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title
message:message
delegate:self
cancelButtonTitle:@"确定"
otherButtonTitles:@"取消", nil];
[alert show];
[alert release];
}