我在iPad应用程序中使用icarousel。我想要一种功能,例如在该icarousel中拖放对象。从轮播中拖出一个视图以从中删除一个项目,然后在轮播中拖放一个视图以向中添加一个项目。我从https://github.com/nicklockwood/iCarousel下载了icarousel
我已经尝试使用委托方法进行拖放功能
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
但整个视图都弄糟了。请在这里帮助我。
先感谢您。
最佳答案
您需要的全部可以在此示例项目中找到:https://github.com/firdousali86/SampleDragDropCarousel
关于ios - 需要在icarousel中拖放 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9883596/