-2

私はiOSプログラミングが初めてで、選択したものを同じテーブルビューの外のCell (cell.detailTextLabel.text)別のものに保存したいと考えています。誰でも私にどのように提案できますか?TextfieldviewController

4

1 に答える 1

0

このテーブル ビューのデリゲート メソッドを使用して、

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    selectedLabelName = cell.textLabel.text;
}

ビューコントローラーで変数名selectedLabelNameを宣言します

于 2013-02-20T14:18:31.683 に答える