baseCell
というセルを持つUICollectionViewを作成しました。これらのセルの内部には、subCell
というセルを持つ別のUICollectionViewがあります。各subCell
の内部はUIButtonです。ボタンはここ複数のUICollectionViewCellのUIButtonが機能しない
を持ち、ボタンとそのアクションを設定するコードです:私はボタンを押すと、それは印刷されません
let openOptionsButton: UIButton = {
let button = UIButton()
button.setImage(#imageLiteral(resourceName: "CircleAdd"), for: .normal)
button.addTarget(self, action: #selector(slideOverToOptions), for: .touchUpInside)
button.contentMode = .scaleAspectFit
return button
}()
func slideOverToOptions() {
print("This is working")
}
func setupViews(){
addSubview(openOptionsButton)
_ = openOptionsButton.anchor(topAnchor, left: nil, bottom: nil, right: rightAnchor, topConstant: 8, leftConstant: 0, bottomConstant: 0, rightConstant: 12, widthConstant: 48, heightConstant: 48)
}
が。この問題を解決するにはどうすればよいですか?
私の編集を参照してください。そのコードは今私のポストにあります –