0

我正在尝试开发我的应用程序的一部分,我可以创建两个UIPickerView依赖于另一个的应用程序。下面是我的代码,因为我有两个UIpickerview(pickerView1 和pickerView2)。当我将pickerView1的选择更改为一个时,必须在pickerView2中更改数据。

问题是当我每次有旧的选择时都会更改pickerView1的选择。例如,如果我选择了 pickerView1 的第二个值,并且在我选择了 pickerView1 的第一个值之前,那么我在 pickerView2 上有第一个选择的值,而不是第二个值。

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    arrayNo = [[NSMutableArray alloc] init];
    [arrayNo addObject:@" 100 "];
    [arrayNo addObject:@" 200 "];

    arrayNo2= [[NSMutableArray alloc] init];
    [arrayNo2 addObject:@" a "];
    [arrayNo2 addObject:@" e "];
    [arrayNo2 addObject:@" c "];
    [arrayNo2 addObject:@" v "];
    [arrayNo2 addObject:@" g "];

    arrayNo3 = [[NSMutableArray alloc] init];
    [arrayNo3 addObject:@""];

    NSArray *keys    = [NSArray arrayWithObjects:@" ",@"key1", @"key2", nil];
    NSArray *objects = [NSArray arrayWithObjects:arrayNo3,arrayNo, arrayNo2, nil];
    _dataOfProfile   = [NSDictionary dictionaryWithObjects:objects
                                                   forKeys:keys];

    pickerView1.tag  = 1;
    pickerView2.tag  = 2;

    [pickerView1 selectRow:0 inComponent:0 animated:NO];
    [pickerView2 selectRow:0 inComponent:0 animated:NO];
    selectedKey =[keys objectAtIndex:0];

}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

// returns the number of 'columns' to display.
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
{
    return 1;

}

// returns the # of rows in each component..
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent: (NSInteger)component
{
    if (pickerView.tag == 1)
    {
        NSArray *key = [_dataOfProfile allKeys];    
        return [key count];
    }
    else
    {
        if (pickerView.tag == 2)
        {
            NSArray *keys =[_dataOfProfile objectForKey:selectedKey];
            return [keys count];

        }
    }

}

-(NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row   forComponent:(NSInteger)component
{
    if (pickerView.tag == 1)
    {
        NSArray *keys =[_dataOfProfile allKeys];
        return [keys objectAtIndex:row];
    }
    else
    {
        if (pickerView.tag == 2)
        {

            return [[_dataOfProfile objectForKey:selectedKey] objectAtIndex:row];
        }
    }


}
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row   inComponent:(NSInteger)component
{
    if (pickerView.tag == 1)
    {
        //Means a value just changed on your picker 2!, update datasource for your second picker
        [pickerView2 reloadComponent:0];
        selectedKey=    [[_dataOfProfile allKeys] objectAtIndex:row];

    }

}
4

1 回答 1

3

尝试如下 -

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row   inComponent:(NSInteger)component
{
    if (pickerView.tag == 1)
    {
        //Means a value just changed on your picker 2!, update datasource for your second picker


        //write this line before loading the picker.....

         selectedKey=    [[_dataOfProfile allKeys] objectAtIndex:row];
        [pickerView2 reloadComponent:0];          

    }    
}
于 2013-06-27T11:11:23.347 回答