1

如何在 UITable 中制作用于移动行的自定义按钮?

我希望它是透明的。(而不是这个在此处输入图像描述:)

另一件事是,当单元格移动时,它有阴影。是否可以删除它?

4

2 回答 2

2

试试这个...

您必须通过继承 UITableViewCell 并覆盖其 setEditing:animated: 方法来做到这一点,如下所示:

重排序控件是一个 UITableViewCellReorderControl,但那是一个私有类,所以你不能直接访问它。

您可以只查看子视图的层次结构并找到它的 imageView。

- (void) setEditing:(BOOL)editing animated:(BOOL)animated
{
    [super setEditing: editing animated: YES];

    if (editing) {

        for (UIView * view in self.subviews) {
            if ([NSStringFromClass([view class]) rangeOfString: @"Reorder"].location != NSNotFound) {
                for (UIView * subview in view.subviews) {
                    if ([subview isKindOfClass: [UIImageView class]]) {
                        ((UIImageView *)subview).image = [UIImage imageNamed: @"yourimage.png"];
                    }
                }
            }
        }
    }   
}
于 2013-01-24T14:08:17.467 回答
1

-[UITableViewCell setShowsReorderControl:]您可以通过设置为 NO来关闭重新排序控制。之后,您将需要自己的自定义重新排序实现。我不确定你可以在移动过程中对阴影效果做些什么。

如果您真的想深入挖掘,您可以创建自定义表格视图单元格移动 UX。

于 2013-01-24T13:58:50.913 回答