12

我有一个UITableView自定义单元格和自定义标题。当我在编辑时移动一个单元格时,它会弹出到标题视图中。如何将标题视图保持在所有单元格的顶部?

该应用程序使用情节提要,以防万一。

这是它的样子?https://www.dropbox.com/s/wg8oiar0d9oytux/iOS%20SimulatorScreenSnapz003.mov

这是我的代码:

[...]
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"ListCell";
    ListCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    int handleSection = [self sectionToHandle:indexPath.section];

    switch (handleSection)
    {
        case PrivateLists:
        {
            if (tableView.isEditing && (indexPath.row == self.privateLists.count))
            {
                cell.textField.text = NSLocalizedString(@"Lägg till ny lista", nil);
                cell.textField.enabled = NO;
                cell.textField.userInteractionEnabled = NO;
                cell.accessoryType = UITableViewCellAccessoryNone;
                cell.editingAccessoryView.hidden = YES;
            }
            else
            {
                List *list = [self.privateLists objectAtIndex:indexPath.row];
                cell.textField.text = list.name;
                cell.textField.enabled = YES;
                cell.textField.userInteractionEnabled =YES;
                cell.backgroundColor = [UIColor clearColor];

                cell.onTextEntered = ^(NSString* enteredString){
                    list.name = enteredString;
                    UpdateListService *service = [[UpdateListService alloc]initServiceWithList:list];
                    [service updatelistOnCompletion:
                     ^(BOOL success){
                         DLog(@"Updated list");

                         NSIndexPath *newPath = [NSIndexPath indexPathForRow:0 inSection:indexPath.section];
                         [self.tableView moveRowAtIndexPath:indexPath toIndexPath:newPath];

                         [self moveListToTop:list.ListId newIndexPath:newPath];
                         justMovedWithoutSectionUpdate = YES;
                     }
                                                    onError:
                     ^(NSError *error){
                         [[ActivityIndicator sharedInstance] hide];
                         [[ErrorHandler sharedInstance]handleError:error fromSender:self];
                     }];
                };
            }
        }
            break;
        default:
            return 0;
            break;
    }

    return cell;
}

-(UIView *)tableView:(UITableView *)aTableView viewForHeaderInSection:(NSInteger)section
{
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 22)];

    UILabel *textLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, 300, 21)];
    [textLabel setFont:[[AXThemeManager sharedTheme]headerFontWithSize:15.0]];
    [textLabel setTextColor:[[AXThemeManager sharedTheme]highlightColor]];
    [textLabel setText:@"SECTION TITLE"];
    [textLabel setBackgroundColor:[UIColor clearColor]];

    UIImageView *backgroundView = [[UIImageView alloc]initWithImage:[AXThemeManager sharedTheme].tableviewSectionHeaderBackgroundImage];
    [backgroundView setFrame:view.frame];
    [view addSubview:backgroundView];
    [view sendSubviewToBack:backgroundView];
    [view addSubview:textLabel];

    return view;
}

- (float)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 22;
}

- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 44;
}
[...]
4

5 回答 5

10

好消息!我能够以两种不同的方式修复/解决您的问题(见下文)。

我会说这肯定是一个操作系统错误。您正在执行的操作会导致您已移动(使用moveRowAtIndexPath:)的单元格被放置在 z 顺序中标题单元格的上方(前面)。

我能够在 OS 5 和 6 中重现问题,使用有和没有 UITextFields 的单元格,以及 tableView 进入和退出编辑模式(我注意到在你的视频中它处于编辑模式)。即使您使用标准节标题也会发生这种情况。

保罗,你在你的评论之一中说:

我使用加载器解决了这个问题,并在执行 reloadData 时“锁定”了表

我不确定“使用加载器并锁定表”是什么意思,但我确实确定调用reloadDataaftermoveRowAtIndexPath:确实可以解决问题。这不是你想做的事吗?

[self.tableView moveRowAtIndexPath:indexPath toIndexPath:newPath];
//[self.tableView reloadData];
// per reply by Umka, below, reloadSections works and is lighter than reloadData:
[self reloadSections:[NSIndexSet indexSetWithIndex:indexPath.section] withRowAnimation:UITableViewRowAnimationNone];

如果您不想这样做,这里有另一个解决方案,对我来说有点 hacky,但似乎运行良好(iOS 5+):

__weak UITableViewCell* blockCell = cell;  // so we can refer to cell in the block below without a retain loop warning.
...
cell.onTextEntered = ^(NSString* sText)
{
    // move item in my model
    NSIndexPath *newPath = [NSIndexPath indexPathForRow:0 inSection:indexPath.section];
    [self.itemNames removeObjectAtIndex:indexPath.row];
    [self.itemNames insertObject:sText atIndex:0];

    // Then you can move cell to back
    [self.tableView moveRowAtIndexPath:indexPath toIndexPath:newPath];
    [self.tableView sendSubviewToBack:blockCell];  // a little hacky

    // OR per @Lombax, move header to front
    UIView *sectionView = [self.tableView headerViewForSection:indexPath.section];
    [self.tableView bringSubviewToFront:sectionView];
于 2012-12-30T21:51:20.557 回答
6

这是一个错误。您可以通过在以下行之后添加来快速解决它:

[self.tableView moveRowAtIndexPath:indexPath toIndexPath:newPath];

这行:

UIView *sectionView = [self.tableView headerViewForSection:indexPath.section];
[self.tableView bringSubviewToFront:sectionView];
于 2013-01-02T16:09:52.563 回答
3

不是解决方案,但您的代码有很多问题。谁知道如果你修复它们会发生什么;)

(1) 您的单元格在此行之后可能为零:

ListCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

它应该如下所示:

ListCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
                cell = [[[ListCell alloc] initWithStyle:style
                                                    reuseIdentifier:cellIdentifier] autorelease];
}

(2) -(UIView *)tableView:(UITableView *)aTableView viewForHeaderInSection:(NSInteger)section 中的两个内存泄漏

->>修复(当您将标签添加为子视图时,它会获得 +1 参考)。

UILabel *textLabel = [[[UILabel alloc] initWithFrame:CGRectMake(10, 0, 300, 21)] autorelease];

->>修复(当您将视图添加为子视图时,它会获得 +1 参考)。

UIImageView *backgroundView = [[[UIImageView alloc]initWithImage:[AXThemeManager sharedTheme].tableviewSectionHeaderBackgroundImage] autorelease];

(3) 不是缺陷,但这可能会对您有所帮助。尝试使用它而不是 [table reloadData]。它可以很好地为事物制作动画,并且不是更新表格的硬核方式。我敢肯定它要轻得多。或者尝试寻找其他“更新”方法。鉴于您没有删除示例中的行,因此 [updateRowsFrom:idxFrom to:idxTo] 之类的内容会有所帮助。

[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0]
                              withRowAnimation:UITableViewRowAnimationAutomatic];
于 2012-12-30T22:28:00.293 回答
0
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {

  float  heightForHeader = 40.0;
    if (scrollView.contentOffset.y<=heightForHeader&&scrollView.contentOffset.y>=0) {
        scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
    } else if (scrollView.contentOffset.y>=heightForHeader) {
        scrollView.contentInset = UIEdgeInsetsMake(-heightForHeader, 0, 0, 0);
    }

}
于 2014-02-10T11:58:34.127 回答
0

我为解决这个问题所做的就是在节标题中设置视图的 zPosition。

headerView.layer.zPosition = 1000 //just set a bigger number, it will show on top of all other cells.
于 2017-10-23T22:11:41.277 回答