hachinoBlog

hachinobuのエンジニアライフ

2012-03-02から1日間の記事一覧

選択したUITableViewCellの値を動的に変えたい場合

//選択したCell値の変更 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; //後続処理 }これで選択されたCellの情報を取得できるの…