-1
我的頁面控制UI沒有更新。頁面控制號每次都會更新,但不會在頁面控制UI中更新。我想也許使用updateCurrentPageDisplay會工作,或者那是我失蹤,但我剛剛收到一個錯誤。這是我的代碼。我是否缺少需要更新用戶界面的內容?我的頁面控制用戶界面沒有得到更新?
@IBOutlet weak var pageControl: UIPageControl!
override func viewDidLoad() {
super.viewDidLoad()
collection.delegate = self
collection.dataSource = self
thisWidth = CGFloat(collection.frame.width)
pageControl.hidesForSinglePage = true
pageControl = UIPageControl.appearance()
pageControl.pageIndicatorTintColor = UIColor.lightGray
pageControl.currentPageIndicatorTintColor = UIColor.red
pageControl.numberOfPages = 10
pageControl.currentPage = 0
}
func numberOfSections(in collectionView: UICollectionView) -> Int {
return 10
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 1
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! CalanderCollectionViewCell
let imagePath = array[indexPath.section]
cell.configureCell(properties: imagePath)
return cell
}
func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
self.pageControl.currentPage = indexPath.section
print("current page\(pageControl.currentPage)")
pageControl.updateCurrentPageDisplay()
print(indexPath.section)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
thisWidth = CGFloat(collection.frame.width)
return CGSize(width: thisWidth, height: collection.frame.height)
}
代碼的頂部部分似乎不完全。至少缺少一個功能。 –
你在談論collectionview嗎?我不這麼認爲,我錯過了哪個功能? –
'thisWidth'到'pageControl.currentPage = 0'不包含在方法中。我只是不明白它們在文件中的位置。 –