gpt4 book ai didi

ios - scrollToItem 在我的 CollectionView 中不起作用?

转载 作者:行者123 更新时间:2023-11-28 09:35:21 28 4
gpt4 key购买 nike

为什么 scrollToItem 在我的 CollectionView 中不起作用?我想在 EnabledID 上使用 scrollToItem。那么问题是什么以及如何解决?

代码:

var dataArray = NSMutableArray() // dataArray is has a data from Database
var EnabledID = Int()

EnabledID = UserDefaults.standard.integer(forKey: "EnabledID")

if EnabledID == 0 {

EnabledID = 1
UserDefaults.standard.set(1, forKey: "EnabledID")

} else {
if EnabledID < dataArray.count {
let index = NSIndexPath(item: EnabledID, section: 0)
self.myCollectionView.scrollToItem(at: index as IndexPath, at: .centeredVertically, animated: true)
}
}

最佳答案

试试这个代码...

objective-C

[collectionView setDelegate:self];
[collectionView reloadData];
[collectionView layoutIfNeeded];
[collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0] atScrollPosition:UICollectionViewScrollPositionTop animated:YES];

swift - 4.x

collectionView.delegate = self
collectionView.reloadData()
collectionView.layoutIfNeeded()
collectionView.scrollToItem(at: IndexPath(item: 0, section: 0), at: .top, animated: true)

当滚动方向为水平时,您需要使用leftrightcenteredHorizo​​ntally

top 为垂直方向。

collectionView.scrollToItem(at: index, at: .top, animated: true)

关于ios - scrollToItem 在我的 CollectionView 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50946880/

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