例如,请参见下面的代码。
UITextField * myTextField = [[UITextField alloc]init];
NSString * myString = myTextField.text; //Set as reference to string here
NSLog(@"%@", myString); //Should be null
[myTextField setText:@"foobar"];
NSLog(@"%@", myString); //Should be foobar
我期望当 myTextField 文本的值发生变化时,“myString”也会发生变化。
我知道另一种方法是设置 UITextField 委托并检查“onChange”然后更改字符串,但我正在寻找是否有其他方法。