0

我有一个自定义表格视图单元格,它有一个右标签和一个左标签我想在从 ui pickerview 中选择对象后更改右标签文本

-(void) pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component  {
if(pickerView ==myPicker){
    if(component==0){
        CustomeCell * cell =(CustomeCell*) [detailTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
        cell.rightLabel.text=@"Hi";
        NSLog(@"Section 0 %@",[allFoodType objectAtIndex:row]);
         [detailTableView reloadData];
    }

但是在我从选择器视图中选择对象后没有任何变化

我对此一无所知,谁能给我一个解决方案如何解决?

4

1 回答 1

0

您是否将同时具有单元格和 UIpickerView 的 ViewController 设置为 UItableViewCell 和 UIPickerView 的委托和数据源?也是 UItableView 中的单元格吗?

于 2013-04-22T19:20:42.717 回答