Objective C 如何根据其他数组项从数组中删除项

Objective C how to remove items from array based on other arrays items

我有三个 UIPickerview。我有 json 回复。我有三个文本字段。如果用户 select 第一个选择器视图相关数据显示在第一个文本字段中。第二个和第三个选择器视图也相同。我的要求是,如果用户 select 第一个选择器视图中的特定项目,第二个和第三个选择器视图不显示该项目。第二个和第三个也一样。

-(void)viewDidLoad
{
    dataArray = [[NSMutableArray alloc]initWithObjects:@"A+",@"A-",@"B+",@"B-",@"O+",@"O-", nil];

    bloodGroup = [[UITextField alloc]initWithFrame:CGRectMake(10, logoImg.frame.origin.y+logoImg.frame.size.height+45, screenWidth-20, 50)];

    bloodGroup.borderStyle = UITextBorderStyleRoundedRect;
    bloodGroup.font = [UIFont systemFontOfSize:15];
    bloodGroup.placeholder = @"Please Select Your Option";
    bloodGroup.delegate = self;

    [self.view addSubview:bloodGroup];

    txtField1 = [[UITextField alloc]initWithFrame:CGRectMake(10, ansField1.frame.origin.y+ansField1.frame.size.height+45, screenWidth-20, 50)];
    txtField1.borderStyle = UITextBorderStyleRoundedRect;
    txtField1.font = [UIFont systemFontOfSize:15];
    txtField1.placeholder = @"Please Select Your Option";
    txtField1.delegate = self;

    [self.view addSubview:txtField1];

    txtField2 = [[UITextField alloc]initWithFrame:CGRectMake(10, ansField2.frame.origin.y+ansField2.frame.size.height+45, screenWidth-20, 50)];
    txtField2.borderStyle = UITextBorderStyleRoundedRect;
    txtField2.font = [UIFont systemFontOfSize:15];
    txtField2.placeholder = @"Please Select Your Option";
    txtField2.delegate = self;

    [self.view addSubview:txtField2];

    myPickerView = [[UIPickerView alloc] init];
    [myPickerView setDataSource: self];
    [myPickerView setDelegate: self];
    myPickerView.showsSelectionIndicator = YES;

    bloodGroup.inputView = myPickerView;
    bloodGroup.inputAccessoryView = toolBar;

    // txtField1

    txtField1.inputView = myPickerView;
    txtField1.inputAccessoryView = toolBar;

    txtField2.inputView = myPickerView;
    txtField2.inputAccessoryView = toolBar;
}

-(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {

    if (isBloodGroupFieldSelected) {
        return 1;
    }
    else if(!isBloodGroupFieldSelected){
        return 1;
    }
    else if(!isGenderGroupFieldSelected)
    {
        return 1;
    }
    return 0;
}

-(NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
{

    if (isBloodGroupFieldSelected) {
        return [dataArray count];
    }
    else if(!isBloodGroupFieldSelected)
    {
        return [dataArray count];
    }
    else if (!isGenderGroupFieldSelected)
    {
        return [dataArray count];
    }
    return 0;
}

-(NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component {

  if (isBloodGroupFieldSelected)
    {
        return dataArray[row];
    }
    else if((!isBloodGroupFieldSelected) && (isGenderGroupFieldSelected))
    {
        return dataArray[row];
    }
    else if(!isGenderGroupFieldSelected)
    {
        return dataArray[row];
    }
    return 0;
}

-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {

    if (isBloodGroupFieldSelected) {
        bloodGroup.text = dataArray[row];
    }
    else if((!isBloodGroupFieldSelected) && (isGenderGroupFieldSelected))
    {
        txtField1.text = dataArray[row];
    }
    else if(!isGenderGroupFieldSelected)
    {
        txtField2.text= dataArray[row];
    }
}

- (void)textFieldDidBeginEditing:(UITextField *)textField {

    if (textField == bloodGroup) {
        isBloodGroupFieldSelected = YES;
    }
    else if (textField == txtField1){
        isBloodGroupFieldSelected = NO;
        isGenderGroupFieldSelected = YES;
    }
    else if (textField == txtField2) {
        isGenderGroupFieldSelected = NO;
        isBloodGroupFieldSelected = NO;
    }
    [myPickerView reloadAllComponents];
}

您已经拥有所需的大部分代码。 pickerView:didSelectRow:inComponent: 委托方法将在您的任何选择器发生更改时调用,假设他们每个人都将自己的委托设置为上面的控制器。虽然,我只看到在上面的代码中定义了一个选择器视图。假设您的选择器视图称为 myPickerViewmyPickerView2myPickerView3。代码大致是:

- (void)pickerView:(UIPickerView *)pickerView
      didSelectRow:(NSInteger)row
       inComponent:(NSInteger)component
{
    if (pickerView == pickerView1) {
        // the first picker view lseection has changed
        // update myPickerView2 and myPickerView3 to reflect
        // the values you want based on this selection
    } else if (pickerView == pickerView2) {
        // update the other views based on this selection
    } else ...

    ....

}