私の問題: IOS 5 とプロトタイプ セルを使用しています。「cellForRowAtIndexPath」関数で、セルを次のように設定しました。
cell = [aTableView dequeueReusableCellWithIdentifier:@"datiInvioCell"];
UITextField *testo = (UITextField*)[cell viewWithTag:1];
testo.placeholder = iv.descrizione;
testo.text = iv.valore;
ここで、セル編集の結果を配列に格納する必要があります。私はそのようにしていた:
-(void) textFieldDidEndEditing:(UITextField *)textField {
InputInvio *iv = [self.cellDettagli objectAtIndex:textField.tag];
iv.valore = textField.text;
}
もう textField.tag は使えません!何か案が?ありがとう。