使用xcode中的按钮操作更新tableview文本标签

时间:2012-07-19 06:54:49

标签: ios xcode uitableview

我有一个按钮,一个文本字段和一个表格视图。我想要的是当我在文本字段中输入一些文本并单击按钮(命名更新)时,它应该更新tableviewcell的detailtextlabel。

1 个答案:

答案 0 :(得分: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;

}