Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个显示结果的文本字段,但我不希望用户可以访问它,因为我不希望键盘出现。我将如何在文本中解决这个问题?
我相信您正在寻找:UITextField.enabled = NO;或 UITextField.hidden = YES;
UITextField.enabled = NO;
UITextField.hidden = YES;
:) 希望有帮助!
UITextField.enabled而不是UITextField.Hidden,否则您将不再看到您的文本字段。
UITextField.enabled
UITextField.Hidden