我有一个包含UICollectionView的UIViewController,并且在其UICollectionViewCell中嵌入了另一个UICollectionView structure
外观如下: visually
我想在UIViewController中按BOTON,然后在外面的UICollectionView的单元格内更改UICollectionView的backgroundColor
我的UIViewController类
class ViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
@IBOutlet weak var scrollH: UICollectionView!
override func viewDidLoad() {
super.viewDidLoad()
if let flowLayout = scrollH.collectionViewLayout as? UICollectionViewFlowLayout {
flowLayout.minimumLineSpacing = 0
}
setupMenuQuestion()
}
var uiview: UIView = {
let view1 = UIView()
view1.backgroundColor = UIColor.brown
return view1
}()
var uibutton: UIButton = {
let btn1 = UIButton()
btn1.setTitle("BOTON", for: .normal)
btn1.addTarget(self, action: #selector(presionoBoton), for: .touchUpInside)
return btn1
}()
@objc func presionoBoton() {
delegateExterior?.cambiarBackground()
}
var delegateExterior: ExteriorCollectionViewCellDelegate?
private func setupMenuQuestion() {
view.addSubview(uiview)
uiview.translatesAutoresizingMaskIntoConstraints = false
uiview.leftAnchor.constraint(equalTo: view.leftAnchor, constant: 0).isActive = true
uiview.rightAnchor.constraint(equalTo: view.rightAnchor, constant: 0).isActive = true
uiview.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
uiview.heightAnchor.constraint(equalToConstant: 30).isActive = true
uibutton.translatesAutoresizingMaskIntoConstraints = false
uiview.addSubview(uibutton)
uibutton.centerYAnchor.constraint(equalTo: uiview.centerYAnchor).isActive = true
uibutton.centerXAnchor.constraint(equalTo: uiview.centerXAnchor).isActive = true
uibutton.leftAnchor.constraint(equalTo: uiview.leftAnchor, constant: 7).isActive = true
uibutton.rightAnchor.constraint(equalTo: uiview.rightAnchor, constant: -7).isActive = true
uibutton.heightAnchor.constraint(equalTo: uiview.heightAnchor, multiplier: 0.8).isActive = true
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 3
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cellNumQuestion = collectionView.dequeueReusableCell(withReuseIdentifier: "celdaExterior", for: indexPath) as! ExteriorCollectionViewCell
return cellNumQuestion
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: view.frame.width, height: view.frame.height - 100)
}
}
我的UICollectionViewCell类
protocol ExteriorCollectionViewCellDelegate {
func cambiarBackground()
}
class ExteriorCollectionViewCell: UICollectionViewCell,
UICollectionViewDataSource, UICollectionViewDelegate,
UICollectionViewDelegateFlowLayout, ExteriorCollectionViewCellDelegate{
func cambiarBackground() {
collectionCelda.backgroundColor = UIColor.black
}
@IBOutlet weak var collectionCelda: UICollectionView!
override init(frame: CGRect) {
super.init(frame: frame)
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.minimumInteritemSpacing = 40
layout.minimumLineSpacing = 40
collectionCelda!.collectionViewLayout = layout
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 4
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
var cell = UICollectionViewCell()
cell = collectionView.dequeueReusableCell(withReuseIdentifier: "celdaInterior", for: indexPath)
return cell
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: frame.width - 20, height: 400)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
return UIEdgeInsets(top: 30.0, left: 0.0, bottom: 30.0, right: 0.0)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return 40
}
}
我看过另一篇与我的问题类似的文章,但我不知道该如何进行
How to access a collectionView that is embedded in a parent collectionViewCell in the main UIViewController?
答案 0 :(得分:0)
在您的情况下,您没有设置已创建的委托,应该在内部设置它:
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cellNumQuestion = collectionView.dequeueReusableCell(withReuseIdentifier: "celdaExterior", for: indexPath) as! ExteriorCollectionViewCell
// Setting the delegate
delegateExterior = cellNumQuestion
return cellNumQuestion
}
此外,为了避免reference-cycle,请将您的委托外部指针设置为弱:
weak var delegateExterior: ExteriorCollectionViewCellDelegate?
另一种解决方案将是在ExteriorCollectionViewCell
内添加一个observer,并在点击按钮并在UIViewController
内调用IBAction方法时,请使用{ {3}}将该事件传递给您的观察者。
即:
添加将在ExteriorCollectionViewCell
中监听您的事件的观察者:
NotificationCenter.default.addObserver(forName: NSNotification.Name(rawValue: "EventForCollectionView"),
object: nil,
queue: nil) { [weak self] (_) in
// This method will be invoked when you post notification from your IBAction method inside your UIVC
self?.YourCustomMethod()
}
通过IBAction方法中的IBAction发送通知事件:
NotificationCenter.default.post(name: NSNotification.Name(rawValue: "EventForCollectionView"), object: nil)
但是,如果按钮在UICollectionViewCell
内,则可以在UICollectionViewCell
内使用IBAction方法并在那里进行逻辑处理。