gpt4 book ai didi

ios - 将 UIButton 设置为 UICollectionViewCell 的大小

转载 作者:搜寻专家 更新时间:2023-11-01 06:18:43 34 4
gpt4 key购买 nike

我有一个名为 ChronicleCellUICollectionViewCell 自定义类。

我正在创建类型为 UIButton 的实例变量。

 class ChronicleCell : UICollectionViewCell {
//init etc.
var buttonFullCellSize : UIButton = {
let button = UIButton()
//TODO set button to be size of UICollectionViewCell frame

}()

}

对于这个实例变量,我想将它的框架设置为等同于 UICollectionViewCell 的框架。但是,这在继承自 UICollectionViewCell 的类中是不可访问的。我怎样才能做到这一点?谢谢!

最佳答案

单元格的 contentView 与单元格大小相同,因此您应该使用它来获取框架。

var buttonFullCellSize: UIButton {
let button = UIButton()
button.frame = contentView.frame
return button
}

关于ios - 将 UIButton 设置为 UICollectionViewCell 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38578081/

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