0
更新自定義的UITableView單元格文本我有一個正確的標籤和離開標籤 我想從UI pickerview選擇對象從uipickerview
-(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]];
[email protected]"Hi";
NSLog(@"Section 0 %@",[allFoodType objectAtIndex:row]);
[detailTableView reloadData];
}
但是沒有後更改的權利標籤文本自定義表格視圖單元格我從選擇器視圖
選擇的對象後,我目前沒有這方面的想法改變,任何人都可以給我一個解決方案如何解決呢?