0

UITextField を含むカスタム UITableViewCell プロトタイプがあります。最後のセクションで UITextField を埋めるときに、新しいセルを自動的に追加しています。1 つの画面に収まらないセクションがさらにあり、別のセクションを追加すると、最初のセクションからの値が入力され、最初のセクションの入力が空になります!

スクリーンショット:

最初の一歩

4 行目を追加 - a! が含まれています。

最初の行は空です!

関連コード:

@implementation TMNewTripPeopleViewController

@synthesize sectionsCount = _sectionsCount;
@synthesize firstCellShowed = _firstCellShowed;

- (int) sectionsCount
{
    if (_sectionsCount == 0) {
        _sectionsCount = 1;
    }
    return _sectionsCount;
}

- (IBAction)inputChanged:(id)sender {
    UITextField* input = (UITextField*) sender;
    NSIndexPath* indexPathName = [NSIndexPath indexPathForRow:0 inSection:input.tag - 1];
    UITableViewCell* cellName = [self.tableView cellForRowAtIndexPath:indexPathName];

    if (input == [cellName viewWithTag:input.tag]) {
        // last name input - add next section?
        if (input.tag == self.sectionsCount) {
            if (input.text.length > 0) {
                self.sectionsCount++;
                [self.tableView insertSections:[NSIndexSet indexSetWithIndex:self.sectionsCount - 1] withRowAnimation:UITableViewRowAnimationTop];
            }
        }
    }

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return self.sectionsCount;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return 2;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *CellIdentifier = @"PersonName";
    if (indexPath.row % 2 == 1) {
        CellIdentifier = @"PersonEmail";
    }
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    UITextField* input = (UITextField*) [cell viewWithTag:indexPath.section + 1];
    if (indexPath.row == 0 && indexPath.section == 0 && !self.firstCellShowed) {
        [input becomeFirstResponder];
        self.firstCellShowed = YES;
    }

    [cell viewWithTag:1].tag = indexPath.section + 1;

    return cell;
}

@end
4

1 に答える 1

1

私はtableView:willDisplayCell:forRowAtIndexPath:あなたの実装では見ていません。通常、このメソッドでセルの表示値を設定します。

を使用する場合dequeueReusableCellWithIdentifier(ほとんどの場合そうする必要があります)、テーブル ビューがスクロールされたときにセルが再利用されます。値を更新しない場合、willDisplayCell再利用する前に以前に持っていた値が表示されます (存在する場合)。

于 2012-07-08T12:56:43.367 に答える