gpt4 book ai didi

ios - UICollectionViewController moveItemAtIndexPath - 如何知道何时完成拖动

转载 作者:行者123 更新时间:2023-12-01 20:00:36 26 4
gpt4 key购买 nike

当 CollectionView 开始和停止拖动时,我需要获取事件/信息。

我认为这必须是拖动单元格时的正常情况 - 以便能够将列表保存在 CollectionView 后面。

- (void)collectionView:(UICollectionView *)collectionView
moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath
toIndexPath:(NSIndexPath *)destinationIndexPath{

最佳答案

想法1:

使用以下两种委托(delegate)方法:-

func collectionView(collectionView: UICollectionView, willDisplayCell cell: UICollectionViewCell, forItemAtIndexPath indexPath: NSIndexPath) {

}

//为 Swift 3 更改了方法签名
func collectionView(UICollectionView, didEndDisplaying: UICollectionViewCell, forItemAt: IndexPath) {

}

想法2:
UICollectionView 是 UIScrollView 的子类。因此,如果您设置了委托(delegate)并实现了 UIScrollViewDelegate,您应该能够以与 UIScrollView 相同的方式检测到这一点

checkin 此功能:
func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
}

这应该工作..

干杯!

关于ios - UICollectionViewController moveItemAtIndexPath - 如何知道何时完成拖动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40003672/

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