0

ボタンテキスト フィールドテーブル ビューがあります。私が欲しいのは、テキストフィールドにテキストを入力してボタン(更新という名前)をクリックすると、テーブルビューセルの詳細テキストラベルが更新されることです。

4

1 に答える 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 に答える