我和我的朋友正在开发一个应用程序,我们完全是新手,但在书籍和护目镜方面已经走了很长一段路。
我们现在被困在这件事上。我们有一堆 texfields,我们有清除按钮与此操作相关联,但是如果您在其中一个警报视图按钮上单击“是”,我们希望调用该操作。
- (IBAction)clearText:(id)sender {
Spelare1Slag1.text = @"";
Spelare1Slag2.text = @"";
}
我们也有这个警报视图:
alertDialog = [[UIAlertView alloc]
initWithTitle: @"Warning"
message: @"Do you want to delete?"
delegate: self
cancelButtonTitle: @"No"
otherButtonTitles: @"Yes", nil];
- (void)alertView: (UIAlertView *)alertView
clickedButtonAtIndex:(NSInteger)buttonIndex {
NSString *buttonTitle=[alertView buttonTitleAtIndex:buttonIndex];
if ([buttonTitle isEqualToString:@"No"]) {
}
else if ([buttonTitle isEqualToString:@"Yes"]){
Spelare1Slag1.text = @"";
}
}
所以这就是我们认为我们应该这样做的方式,但是我们不知道在 else if 语句中放置什么。我们希望当您在警报视图中按“是”按钮时清除文本字段,而不是在您按“否”时清除
提前致谢!