UITableViewCell animateWithDuration不起作用

时间:2014-12-12 16:12:37

标签: ios objective-c uitableview ios8 uianimation

我的自定义单元格上有图像视图。单元格上的所有元素都有约束。我已经为动画我的箭头实现了这个方法。旋转效果很好,但没有动画。我有调试单元格并且从nib方法中唤醒了。

我有从故事板单元构建的标题:

查看控制器回调:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    static NSString *cellIdentifier = @"SectionHeader";

    KNCategorySectionCell *sectionView = (KNCategorySectionCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    sectionView.index = section;
    sectionView.delegate = self;

    KNCategoryPoxy *category = [_categories objectAtIndex:section];

    [sectionView setupViewWithState:category.state];

    sectionView.categoryName.text = category.dictionary[@"name"];

    return sectionView;
}

方法的自定义单元格实现:

- (void)setupViewWithState:(KNCategoryState)state
    {
        switch (state)
        {
            case KNCategoryStateStateCollapsed:
            {
                [self.contentView setBackgroundColor:[UIColor red:255 green:255 blue:255]];

            } break;

            case KNCategoryStateStateExpanded:
            {
                [UIView animateWithDuration:10.0f delay:0.0f options:UIViewAnimationOptionCurveEaseOut animations:^{
                    self.arrowImage.transform = CGAffineTransformMakeRotation(M_PI_2);
                } completion:^(BOOL finished) {

                }];

                [self.contentView setBackgroundColor:[UIColor red:230 green:230 blue:230]];

            } break;
        }
    }

正如我所说旋转工作但它立即将视图旋转到适当的M_PI_2并且似乎没有动画。

我使用Xcode 6.1和iOS 8.1模拟器进行测试。

另外,我在自定义单元格中实现了单击手势并实现了此方法:

- (void)singleTap
{
    [self.delegate sectionDidTappedWithIndex:self.index];
}

delegate它是我的视图控制器,其中包含显示所有自定义单元格的表。

在视图控制器中,我实现了设置标头扩展和重新加载数据的方法:

- (void)sectionDidTappedWithIndex:(NSInteger)index
{
        for (KNCategoryPoxy *category in _categories)
        {
            category.state = KNCategoryStateStateCollapsed;
        }

        KNCategoryPoxy *category = [_categories objectAtIndex:index];

        category.state = !category.state;

        [self.theTableView reloadData];
}

1 个答案:

答案 0 :(得分:1)

尝试使用 UIView.commmitAnimations()执行动画,例如:

Location: https://foo.com/bar.zip [following]

还尝试在 willDisplayCell:方法中执行操作。

请参阅此http://www.thinkandbuild.it/animating-uitableview-cells/解决方案,以在tableview单元格

中执行动画