0

私は自分のアプリケーションの一部を開発しようとしています.2UIPickerViewつを作成して、もう一方に依存することができます。UIpickerview私は2つ(pickerView1とpickerView2)を持っているので、これが私のコードです。pickerView1 の選択を 1 つ変更すると、pickerView2 でデータを変更する必要があります。

問題は、古い選択をするたびに pickerView1 の選択を変更するときです。たとえば、pickerView1 の 2 番目の値を選択し、pickerView1 の最初の値を選択する前に、pickerView2 には 2 番目の値ではなく、最初の選択の値があります。

- (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 に答える