1

5つのプロトタイプセルを持つ動的テーブルビューがあり、各セル内に6つのテキストフィールドがあります。テキストフィールドにタグを付けていますが、「 」内のすべてのテキストフィールドから値を取得するにはどうすればよいか理解できませんtextFieldDidEndEditing。私のコードにはこれがあります:

-(void) textFieldDidEndEditing:(UITextField *)textField
{
NSMutableArray *cellOneContentSave = [[NSMutableArray alloc] init];
NSString *cellOneTexfieldOneTxt;
if (textField == [self.view viewWithTag:1503])
{
cellOneTexfield1Txt = textField.text;
[cellOneContentSave addObject:cellOneTexfieldOneTxt];  
}

問題1:しかし!これは、セル1の1つのtexfieldからの値のみを取得します...各セルとtexfieldにスイッチを使用する必要がありますか?

問題2:動的なテーブルビューであると言ったので、ユーザーはコミット編集スタイルに入るときに左側に表示される緑色の+ボタンを押してニュース行を(セクションごとに)挿入できます... newtexfieldsのタグには異なるタグがありますか?一方で、それは新しいtexfieldであるが、異なるindepaxth.rowであるため、私はそうは思わない。しかし、他方では、コントローラーが新しいタグを要求するかどうかはわからない。

4

1 に答える 1

2
-(void) textFieldDidEndEditing:(UITextField *)textField
{
    // assuming your text field is embedded directly into the table view
    // cell and not into any other subview of the table cell
    UITableViewCell * parentView = (UITableViewCell *)[textField superview];

    if(parentView)
    {
        NSMutableArray *cellOneContentSave = [[NSMutableArray alloc] init];
        NSString *cellOneTexfieldOneTxt;

        NSArray * allSubviews = [parentView subviews];
        for(UIView * oneSubview in allSubviews)
        {
            // get only the text fields
            if([oneSubview isKindOfClass: [UITextField class]])
            {
                UITextField * oneTextField = (UITextField *) oneSubview;

                if(oneTextField.text)
                {
                    [cellOneContentSave addObject: oneTextField.text];
                } else {
                    // if nothing is in the text field, should
                    // we simply add the empty string to the array?
                    [cellOneContentSave addObject: @""];
                }
            }
        }
    }

    // don't forget to actually *DO* something with your mutable array
    // (and release it, in case you're not using ARC), before this method
    // returns.
}
于 2012-08-09T15:03:19.973 に答える