我试图更新一个UITableViewCell,
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if ([[self.menuItems objectAtIndex:aPath.row] isEqualToString:@"AirPrint Order"]) {
UITableViewCell *cell = (UITableViewCell *)[tableView cellForRowAtIndexPath:indexPath];
cell.textLabel.text=@"Generating Order Receipt";
NSArray *nsa = [[NSArray alloc] initWithObjects:indexPath, nil];
[tableView reloadRowsAtIndexPaths:nsa withRowAnimation:UITableViewRowAnimationNone];
}
}
即使调试器在调试器里 确实能进入我的体内 如果声明,但单元格文本没有发生什么。