0
如何清除UITableView cell.detailTextLabel.text中的內容?一旦用戶點擊頂部的左側欄按鈕,我想要清除所有答案?清除UITableView中單元格的值
以下是我的代碼。不知道這是否是正確的方法。
-(void)ClearBtn:(id)sender {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.detailTextLabel.text = @"test";
//NSLog(@"cell %@", cell.detailTextLabel.text);
[self.tableView reloadData];
}