私は 3 つの UITableViewCells と 3 つの Picker Views を持つ UITableView を他のデータと共に持っています。
Picker1 には Data1 があります
Picker2 には Data2 があります
Picker3 には Data3 があります
これをコードで:
- (NSString *)pickerView:(UIPickerView *)thePickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component;
{
if (thePickerView.tag == 1) {
return [data1 objectAtIndex:row];
} else if (thePickerView.tag == 2) {
return [data2 objectAtIndex:row];
} else if (thePickerView.tag == 3) {
return [data3 objectAtIndex:row];
}
return [data1 objectAtIndex:row];
}
UITableViewCellでピッカービューのデータを変更したい。どうすればそれができますか?