I have a tableview with 5 rows, when I select a row it opens a UIPickerView in the next page to select options,the same things happen with 5 rows.Now I want ,The Pickervalue, It should be reflected on particular Row(right side) whichever I selected
and I have a button on the same page to perform on the selected rows values(UIPicker values).How to give options in Button.to select the Rows values which is been taken from UIPicker
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
if(indexPath.row==0){
Picker1 *logInController = [[Picker1 alloc] init];
[[self navigationController] pushViewController:logInController animated:YES];
}
if(indexPath.row==1){
Picker2 *logInController = [[Picker2 alloc] init];
[[self navigationController] pushViewController:logInController animated:YES];
}
}
like above I have opened the UIPIcker and select the options.
IN PICKER1.m
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
// update label text to show selected option
NSString* string=[NSString stringWithFormat:@"you are selected %@",[list objectAtIndex:row]];
label.text=string;
}
- (void)viewDidLoad
{
[super viewDidLoad];
list =[[NSMutableArray alloc]init];
[list addObject:@"GPS"];
[list addObject:@"NONE"];
}