点击UIAlertview
中的确定或取消按钮无法正常工作。当我点击确定或取消按钮时,UIAlertview
不会被解雇,但如果我点击确定或取消按钮两次,那么只有UIAlertview
被解雇。
这是我的代码。
alert = [[UIAlertView alloc] initWithTitle:@"Plese Enter comma seperated sets"
message:@"\n"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Save", nil] ;
CGRect rect = {12, 60, 260, 25};
dirField = [[UITextField alloc] initWithFrame:rect] ;
dirField.backgroundColor = [UIColor whiteColor];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
dirField.text = setString;
[dirField setText:@"test"];
[dirField becomeFirstResponder];
[alert addSubview:dirField];
[alert show];
答案 0 :(得分:1)
Meghaji
我认为您的方法存在问题,我的意思是它会调用2次。
由于