gpt4 book ai didi

iphone - 将项目从 UITableView 拖放到 UITableView

转载 作者:行者123 更新时间:2023-12-03 20:55:33 25 4
gpt4 key购买 nike

我知道 stackoverflow 上有很多关于两个 UITableView 之间拖放的线程,但我无法顺利处理它。

请不要在此线程中发布该 stackoverflow 的链接作为引用,因为我已经完成了该操作。

所以....

我创建了一个主 UIViewController,在其中添加了两个 UITableView,即 tableView1、tableView2

在其下,我添加了 customCell 和 UIView,并在该单元格上包含图像。现在,如果我使用 TouchMoved 委托(delegate),它对我来说根本不起作用。而不是我有像这样的手势识别器:

//Custom cell for planned spend details progress bars....
- (void) customCell:(UITableViewCell *)cell {

UIView *progressView = [[UIView alloc]initWithFrame:CGRectMake(2.0, 2.0, 320.0, 97.0)];
[self setProgressBars:progressView];
progressView.userInteractionEnabled=YES;
[self addGestureRecognizersToView:progressView];

[cell.contentView addSubview:progressView];
cell.selectionStyle=UITableViewCellSelectionStyleNone;
[progressView release];

}

setProgressBars 是我添加 UIImageView 的方法。

现在使用 UIRotationGestureRecognizer,我可以在单个 UITableView 中拖放 UIImageView。如果我将拖动到该 UITableView 的范围之外,它根本不起作用。

请帮助解决我的问题,以便我能够将项目从一个 UITableView 拖动到另一个 UITableView

最佳答案

我有一些工作代码:How to copy cells between tables as the pulse app ,但是动画很垃圾。如果有兴趣,我们可以联手将其开源发布...

更新:到目前为止我的进度:https://bitbucket.org/elmalabarista/dragdroptableviews

关于iphone - 将项目从 UITableView 拖放到 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5241535/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com