2

UITableViewCell在我的应用程序中使用自定义,我正在尝试调整“滑动删除”按钮的框架。

这就是我正在做的事情:

- (void)layoutSubviews {
    [super layoutSubviews];
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) return;
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationBeginsFromCurrentState:YES];
    [UIView setAnimationDuration:0.0f];
    for (UIView *subview in self.subviews) {
        if ([NSStringFromClass([subview class]) isEqualToString:@"UITableViewCellDeleteConfirmationControl"]) {
            CGRect newFrame = subview.frame;
            newFrame.origin.x = newFrame.origin.x - 25;
            subview.frame = newFrame;
        } else if ([NSStringFromClass([subview class]) isEqualToString:@"UITableViewCellEditControl"]) {
            CGRect newFrame = subview.frame;
            newFrame.origin.x = newFrame.origin.x - 25;
            subview.frame = newFrame;
        }
    }
}

它出现在新的位置,这很棒。但是,当我单击按钮使其消失时,按钮似乎突然向左移动了大约 10 个点,然后被移除。

为什么会发生这种情况,我该如何解决?

4

1 回答 1

4

我不熟悉您正在使用的动画代码,但我会尝试使用willTransitionToState(并且,如果需要,didTransitionToState)而不是layoutSubviews在编辑 tableViewCells 期间处理动画。

自 iOS 3.0 起,两者都可用。

将此代码放在您的子类中UITableViewCell。它将处理从一个UITableViewCellStateMask到另一个的所有转换,并且您可以实现转换到每个状态所需的动画。只需根据我添加的 NSLog 在适当的位置实现您需要的动画即可。(同样,不熟悉您的动画代码,但我确实对其进行了测试并使用此代码看到了结果)

- (void)willTransitionToState:(UITableViewCellStateMask)state {

    [super willTransitionToState:state];

    if (state == UITableViewCellStateDefaultMask) {

        NSLog(@"Default");
        // When the cell returns to normal (not editing)
        // Do something...

    } else if ((state & UITableViewCellStateShowingEditControlMask) && (state & UITableViewCellStateShowingDeleteConfirmationMask)) {

        NSLog(@"Edit Control + Delete Button");
        // When the cell goes from Showing-the-Edit-Control (-) to Showing-the-Edit-Control (-) AND the Delete Button [Delete]
        // !!! It's important to have this BEFORE just showing the Edit Control because the edit control applies to both cases.!!!
        // Do something...

    } else if (state & UITableViewCellStateShowingEditControlMask) {

        NSLog(@"Edit Control Only");
        // When the cell goes into edit mode and Shows-the-Edit-Control (-)
        // Do something...

    } else if (state == UITableViewCellStateShowingDeleteConfirmationMask) {

        NSLog(@"Swipe to Delete [Delete] button only");
        // When the user swipes a row to delete without using the edit button.
        // Do something...
    }
}

如果您需要在这些事件之一之后发生某些事情,只需实现相同的代码,但在didTransitionToState. 同样UITableViewCellStateMask适用。

于 2013-01-15T01:59:12.337 回答