我有一个使用tableView的customCell.I想在按钮点击时显示UIAlertView。我有一个响应按钮click的方法。如何用该方法显示警报视图?
我使用的方法是在
中 -(void) btnAction:(id) sender
{
NSLog(@"i am here");
}
和Cell事件响应为:
[cell.ansBtn1 addTarget:self action:@selector(btnAction:) forControlEvents:UIControlEventTouchUpInside];
有谁能告诉我如何显示alertView?
答案 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];