我试图理解为什么我的代码不能完全由我的应用程序播放?
实际上,当用户按下按钮时,我在viewController上有一个按钮,两个文本字段正常交互,并且背景将改变以显示交互的可能性。完成代码并进行第一次测试后,它就可以工作了!它也可以在其他视图中工作,但是经过一些测试,按钮只是更改了他的隐藏属性,但没有执行其他操作。邮递区号:
@IBAction func modifyBtnWasPressed(_ sender: UIButton) {
//We change the button by the save button
modifyBtn.isHidden = true
saveBtn.isHidden = false
//We enable 2 tf and we show to the user the 2 TF which will be enable
acftRegistrationTxt.isUserInteractionEnabled = true
acftModelTxt.isUserInteractionEnabled = true
acftRegistrationTxt.backgroundColor = UIColor(red: 0.9, green: 0.9, blue: 0.9, alpha: 1.0);
acftModelTxt.backgroundColor = UIColor(red: 0.9, green: 0.9, blue: 0.9, alpha: 1.0);
}
现在在这种情况下,只有isHidden属性起作用,接下来的4行不适用于该应用程序。