- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
小伙伴们:
在我的测试应用程序的 viewController 中有两个按钮,我称之为“否”的正确按钮,
另一个是"is"。两个按钮会调用两个不同的函数,而当
用户按下其中一个按钮,我想向用户显示一个警告以确认这一点。
我知道使用 UIAlertViewDelegate
- (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
但是有两个按钮,我很纳闷。我怎么知道按下了哪个按钮。
所以,请帮我解决这个问题,在此先感谢您!
最佳答案
当你创建一个UIAlertView
时,你可以为它设置一个标签
-(IBAction)yesButtonClick:(id)sender{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message" delegate:self cancelButtonTitle: @"Cancel" otherButtonTitles:@"OK", nil];
alert.tag = 101;
[alert show];
}
-(IBAction)noButtonClick:(id)sender{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message" delegate:self cancelButtonTitle: @"Cancel" otherButtonTitles:@"OK", nil];
alert.tag = 102;
[alert show];
}
在委托(delegate)方法中检查正在显示的警报
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (alertView.tag == 101) {
// from YES button
}
else if (alertView.tag == 102) {
// from NO button
}
}
关于ios - UIAlertViewDelegate :clickedButtonAtIndex and two buttons,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9976471/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!