在 iOS 中使用 UITextField 条目作为数组

Use UITextField entry as array in iOS

在 iOS 中,我试图让用户输入的 UITextField 条目是我的数组的唯一值。现在,每个新的 UITextField 条目都会不断向数组中添加值。我只想要当前的 UITextField 条目。

有没有我可以轻松添加的东西,以便最新的 UITextField 条目是数组中使用的唯一值?

现在我的 ViewController.m:

里有这个
- (IBAction)submit:(id)sender {
    NSString * input=textfield.text;

    Label.text=input;

    [self resignFirstResponder];

    [array4 addObject:self.textfield.text];

    NSLog(@"array: %@", array4);
}

如果你想让array4只有一个值self.textfield.text那么改变:

[array4 addObject:self.textfield.text];

至:

array4 = @[ self.textfield.text ];

这会将一个新的单元素数组分配给 array4