在我的 viewDidLoad 中,我正在创建一个如下所示的文本字段:
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(10.0f,
6.0f,
toolBar.bounds.size.width - 20.0f - 68.0f,
30.0f)];
textField.borderStyle = UITextBorderStyleRoundedRect;
textField.autoresizingMask = UIViewAutoresizingFlexibleWidth;
[toolBar addSubview:textField];
但我需要从 IBAction 方法的 textField 中读取文本。
我将如何从该 IBAction 访问 textField 中的文本?