我尝试在 viewController 中添加 pageControl ,以显示当前页面和总页数。
我在 viewController 中有 collectionView 。但如果我在 viewController 中添加 @IBOutlet ,我会收到错误:
“从DetailViewController到UIPageControl的pageControl出口无效。出口无法连接到重复内容。”
那意味着重复内容?
我知道这个问题已被多次提出,但我尝试了所建议但没有任何帮助。
main.storyboard中的PageControl只有一个@IBOutlet,它会抛出错误...
如果需要我的代码,他就在这里:
class DetailViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource, UITableViewDelegate, UITableViewDataSource {
// MARK: - IBOutlet's
@IBOutlet weak var collectionView: UICollectionView!
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var pageControl: UIPageControl!
var hallImages: Hall?
var currentPage = 0
override func viewDidLoad() {
super.viewDidLoad()
}
override func viewWillAppear(_ animated: Bool) {
tableView.estimatedRowHeight = 626
tableView.rowHeight = UITableViewAutomaticDimension
}
// MARK: - CollectionView
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
guard let imagesHall = hallImages?.ImagesHalls.count else {
return 0
}
return imagesHall
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! DetailCollectionViewCell
if let imagesHalls = hallImages?.ImagesHalls[indexPath.item] {
cell.imageView.sd_setImage(with: URL(string: imagesHalls))
}
return cell
}
}
如何在collectionView或collectionCell中添加pageControll(我不知道如何更好)?
答案 0 :(得分:0)
我遇到了同样的问题。这是因为您的页面控件是单元格的子视图。你不能做这个。