2011-02-01 110 views

回答

0

你有兩個選擇:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    [tableView deselectRowAtIndexPath:indexPath animated:YES]; 
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; 
    // do stuff with cell 
    // 
} 
  • 在您的數據模型中設置適當的狀態,並調用[tableView reloadData],然後調用- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath,根據您的數據模型設置單元顯示。