自定义单元格按钮上的UIAlertView单击

时间:2011-04-19 09:42:38

标签: objective-c ios4

我有一个使用tableView的customCell.I想在按钮点击时显示UIAlertView。我有一个响应按钮click的方法。如何用该方法显示警报视图?

我使用的方法是在

tavleView.m:

 -(void) btnAction:(id) sender
  {
    NSLog(@"i am here");    
  }

和Cell事件响应为:

 [cell.ansBtn1 addTarget:self action:@selector(btnAction:) forControlEvents:UIControlEventTouchUpInside];

有谁能告诉我如何显示alertView?

1 个答案:

答案 0 :(得分:0)

 UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"your message title" message:@"some message" delegate:@"self/you may give the instance of other class" cancelButtonTitle:@"ok" otherButtonTitles:nil];
 [alert show];
 [alert relase];