0

タブ付きのアプリケーションがあります。4 つのタブがあり、最初の 2 つのタブにはピッカービューがあります。3 番目のタブの 1 番目と 2 番目のピッカー ビューで提供される情報をどのように使用できますか? 例: 1 ピッカー ビュー: (これはあなたの好きな動物です) 犬、猫、馬。私は犬を選びます。2番目のタブ(2番目のピッカービュー):(どの色でも)緑、青、茶色。私はブラウンをチョイス。

最初の情報 (犬) を 3 番目のタブで使用できるようにします。オプション:緑、青、茶色(例)は(私が選んだものは何でも)同じです。しかし、3 番目のビューには茶色の犬が表示されます (たとえば、「あなたは茶色の犬を選びました」のテキストとして)。私が何を意味するか知っていることを願っています... 1. 選択: 犬 2. 茶色 = 3 番目のタブの茶色の犬 それは小さなデータベースのようなものです... または、どうすればこれを行うことができますか? あなたが私を助けてくれることを願っています。

ありがとうございました :-)

4

1 に答える 1

0
See the code 

-(IBAction)simple_picker:(id)sender{

    pickerViewPopup = [[UIActionSheet alloc] init];
    const CGFloat toolbarHeight = 44.0f;
    Picker = [[UIPickerView alloc] initWithFrame:CGRectMake(0, toolbarHeight, 0, 0)];
    Picker.showsSelectionIndicator = YES;
    Picker.dataSource = self;
    Picker.delegate = self;
    //........
    UIToolbar *pickerToolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, toolbarHeight)];
    pickerToolbar.barStyle = UIBarStyleBlackOpaque;
    [pickerToolbar sizeToFit];
    NSMutableArray *barItems = [[NSMutableArray alloc] init];

    UIBarButtonItem *cancel= [[UIBarButtonItem alloc]initWithTitle:@"Cancel" style:UIBarButtonItemStyleBordered target:self action:@selector(Cancel_picker:)];
    [barItems addObject:cancel];
    UIBarButtonItem *flexSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
    [barItems addObject:flexSpace];
    //....
    UIBarButtonItem *doneBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneButtonPressed2:)];
    [barItems addObject:doneBtn];
    [pickerToolbar setItems:barItems animated:YES];
    [pickerViewPopup addSubview:pickerToolbar];

    lbl2.text=[picArray objectAtIndex:0];

    [pickerViewPopup addSubview:Picker];
    [pickerViewPopup showInView:self.view.superview];
    [pickerViewPopup setBounds:CGRectMake(0,0,self.view.frame.size.width, 464)];

}

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView;
{
    return 1;
}

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
            lbl2.text= [picArray objectAtIndex:row];


}

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

    return [picArray count];

}

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

return [picArray objectAtIndex:row];


}


-(void)btncancelPressed2:(id)sender{
    [pickerViewPopup dismissWithClickedButtonIndex:1 animated:YES];
}

-(void)Cancel_picker:(id)sender{
    [pickerViewPopup dismissWithClickedButtonIndex:1 animated:YES];
}
于 2013-04-29T11:51:11.613 に答える