我有一个按钮、一个文本字段和一个表格视图。我想要的是当我在文本字段中输入一些文本并单击按钮(名为更新)时,它应该更新 tableviewcell 的 detailtextlabel。
问问题
288 次
1 回答
0
试试这个,点击按钮后添加 [yourtableview reloadData]
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell;
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell==nil)
{
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
else
{
for(UIView *v in cell.contentView.subviews)
{
[v removeFromSuperview];
}
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;;
cell.accessoryType = UITableViewCellAccessoryNone;
[[cell textLabel] setFont:[UIFont fontWithName:@"Verdana" size:10]];
cell.textColor = [UIColor whiteColor];
cell.text = textfield.text; //Yourtextfield text
return cell;
}
于 2012-07-19T06:59:15.267 回答