我的问题:我使用 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 了!任何想法?谢谢。