當我點擊任何單元格文本時,它變成藍色,當我再次回來時,它仍然是藍色,直到我點擊另一個單元格如何解決此問題 我使用UITableView與詳細文本標籤。UITableView單元格顏色不消失
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
UIImageView* img = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"cell1.png"]];
[cell setBackgroundView:img];
[img release];
}
- (空)的tableView:(UITableView的*)的tableView didSelectRowAtIndexPath方法:(NSIndexPath *)indexPath { \t \t CategoriesList * dvController = [[CategoriesList alloc] initWithNibName:@「CategoriesList」bundle:nil]; \t //將選定的對象傳遞給新的視圖控制器。 \t //dvController.description = description; \t //dvController.title=title; \t //dvController.descriptionImage=descriptionImage; \t [self.navigationController pushViewController:dvController animated:YES]; \t [dvController release]; \t } – ali
我在編輯你的代碼,但它不工作 – ali
@ali「不工作」是一個不好的描述。什麼不工作? – Vladimir