我有一个自定义表格视图单元格,它有一个右标签和一个左标签我想在从 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];
}
但是在我从选择器视图中选择对象后没有任何变化
我对此一无所知,谁能给我一个解决方案如何解决?