- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图将表格 View 单元格内的自定义 View 的底角圆化。我正在使用的代码无法正常工作,我不明白为什么...
因此,我有一个 UItableViewCell
,在 contentView
中有一个自定义 View containerView
。在里面,在顶部,我有两个标签,在底部有另一个 View 。该 View 必须具有圆底角。
我的代码:
class HomeTableViewCell: UITableViewCell {
var containerView: UIView!
var bottomDetailsView: UIView!
var titleLabel: UILabel!
var timeLabel: UILabel!
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: "tableCell")
containerView = UIView()
bottomDetailsView = UIView()
timeLabel = UILabel()
titleLabel = UILabel()
self.contentView.addSubview(containerView)
containerView.addSubview(bottomDetailsView)
containerView.addSubview(titleLabel)
containerView.addSubview(timeLabel)
containerView.snp.makeConstraints({ (maker) in
maker.top.equalTo(self.contentView.snp.top)
maker.bottom.equalTo(self.contentView.snp.bottom)
maker.left.equalTo(self.contentView.snp.left).inset(10)
maker.right.equalTo(self.contentView.snp.right).inset(10)
})
bottomDetailsView.snp.makeConstraints { (maker) in
maker.top.equalTo(containerView.snp.centerY).offset(30)
maker.left.equalTo(containerView.snp.left)
maker.right.equalTo(containerView.snp.right)
maker.bottom.equalTo(containerView.snp.bottom)
}
timeLabel.snp.makeConstraints { (maker) in
maker.centerX.equalTo(containerView.snp.centerX)
maker.centerY.equalTo(containerView.snp.centerY).offset(10)
}
titleLabel.snp.makeConstraints { (maker) in
maker.left.equalTo(containerView.snp.left).inset(10)
maker.top.equalTo(containerView.snp.top).inset(10)
maker.right.equalTo(containerView.snp.right).inset(10)
}
}
override func layoutSubviews() {
super.layoutSubviews()
bottomDetailsView.backgroundColor = #colorLiteral(red: 0.9607843161, green: 0.7058823705, blue: 0.200000003, alpha: 1)
containerView.backgroundColor = #colorLiteral(red: 0.4666666687, green: 0.7647058964, blue: 0.2666666806, alpha: 1)
containerView.layer.cornerRadius = 15.0
timeLabel.font = timeLabel.font.withSize(24)
timeLabel.textColor = #colorLiteral(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
titleLabel.textColor = #colorLiteral(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
let path = UIBezierPath(roundedRect: bottomDetailsView.bounds, byRoundingCorners: [.bottomLeft, .bottomRight], cornerRadii: CGSize(width: 15, height: 15))
let shapeLayer = CAShapeLayer()
shapeLayer.frame = bottomDetailsView.frame
shapeLayer.path = path.cgPath
bottomDetailsView.layer.backgroundColor = UIColor.red.cgColor
bottomDetailsView.layer.mask = shapeLayer
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
我正在使用 SnapKit
进行自动布局。有问题的代码是
let path = UIBezierPath(roundedRect: bottomDetailsView.bounds, byRoundingCorners: [.bottomLeft, .bottomRight], cornerRadii: CGSize(width: 15, height: 15))
let shapeLayer = CAShapeLayer()
shapeLayer.frame = bottomDetailsView.frame
shapeLayer.path = path.cgPath
bottomDetailsView.layer.backgroundColor = UIColor.red.cgColor
bottomDetailsView.layer.mask = shapeLayer
我用这段代码尝试了不同的组合,但没有任何效果。它不会显示任何内容。如果不是 bottomDetailsView.layer.mask = shapeLayer
我写 bottomDetailsView.layer.addSublayer(shapeLayer)
View 显示但没有圆角。
我不记得我做了什么,但在某个时候我实现了我在 View 顶部看到一个黑色圆形层,但前提是单元格在屏幕之外然后再次加载 dequeueReuseableCell
。我在 Internet 上找到的每个解决方案都指向我拥有的相同代码,也许它必须在其他地方完成?
编辑 1:
得到答案后,我更新了代码,现在它看起来像这样:
class HomeTableViewCell: UITableViewCell {
var containerView: UIView!
var bottomDetailsView: BottomDetailsView!
var titleLabel: UILabel!
var timeLabel: UILabel!
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: "tableCell")
containerView = UIView()
bottomDetailsView = BottomDetailsView(frame: .zero)
timeLabel = UILabel()
titleLabel = UILabel()
self.contentView.addSubview(containerView)
containerView.addSubview(titleLabel)
containerView.addSubview(timeLabel)
containerView.addSubview(bottomDetailsView)
containerView.snp.makeConstraints({ (maker) in
maker.top.bottom.left.right.equalToSuperview()
})
titleLabel.snp.makeConstraints { (maker) in
maker.height.equalTo(15)
maker.top.left.right.equalTo(containerView)
maker.bottom.equalTo(timeLabel.snp.top)
}
timeLabel.snp.makeConstraints { (maker) in
maker.height.equalTo(34)
maker.top.equalTo(titleLabel.snp.bottom)
maker.centerX.equalTo(containerView.snp.centerX)
maker.bottom.equalTo(bottomDetailsView.snp.top)
}
bottomDetailsView.snp.makeConstraints { (maker) in
maker.top.equalTo(timeLabel.snp.bottom)
maker.left.equalTo(containerView.snp.left)
maker.right.equalTo(containerView.snp.right)
maker.bottom.equalTo(containerView.snp.bottom)
}
}
override func layoutSubviews() {
super.layoutSubviews()
bottomDetailsView.backgroundColor = #colorLiteral(red: 0.9607843161, green: 0.7058823705, blue: 0.200000003, alpha: 1)
containerView.backgroundColor = #colorLiteral(red: 0.4666666687, green: 0.7647058964, blue: 0.2666666806, alpha: 1)
containerView.layer.cornerRadius = 15.0
timeLabel.font = timeLabel.font.withSize(24)
timeLabel.textColor = #colorLiteral(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
titleLabel.textColor = #colorLiteral(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
titleLabel.numberOfLines = 0
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
我还按照 Duncan C 的建议创建了 UIView 的子类:
class BottomDetailsView: UIView {
var shapeLayer: CAShapeLayer!
//If the view's bounds change, update the shapeLayer's frame and also rebuild the path
override var bounds: CGRect {
didSet {
shapeLayer.frame = self.bounds
createShapeLayerPath()
}
}
func createShapeLayerPath() {
let path = UIBezierPath(roundedRect: bounds,
byRoundingCorners: [.bottomLeft, .bottomRight],
cornerRadii: CGSize(width: 15.0, height: 15.0))
shapeLayer.path = path.cgPath
}
override init(frame: CGRect) {
super.init(frame: frame)
shapeLayer = CAShapeLayer()
shapeLayer.frame = bounds
layer.mask = shapeLayer
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
}
现在一切正常,除了如果我放大,如果我仔细看,我可以在角落看到一点底部 View 。它们没有完全对齐。底线没问题,只是角落。
最佳答案
添加 CAShapeLayer 作为 View mask 层的代码非常接近。这一行:
shapeLayer.frame = bottomDetailsView.frame
应该阅读
shapeLayer.frame = bottomDetailsView.bounds
View /图层的框架在其父 View 的坐标系中表示。 View 的边界定义了它的坐标系。
我没有尝试您的复杂 TableView 案例,但我确实创建了 UIView 的子类,它创建了一个底部圆角掩码:
class RoundedBottomCornersView: UIView {
var shapeLayer: CAShapeLayer!
//If the view's bounds change, update the shapeLayer's frame and also rebuild the path
override var bounds: CGRect {
didSet {
shapeLayer.frame = self.bounds
createShapeLayerPath()
}
}
func createShapeLayerPath() {
let path = UIBezierPath(roundedRect: bounds,
byRoundingCorners: [.bottomLeft, .bottomRight],
cornerRadii: CGSize(width: 15, height: 15))
shapeLayer.path = path.cgPath
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
layer.borderWidth = 1.0
shapeLayer = CAShapeLayer()
shapeLayer.frame = bounds
layer.backgroundColor = UIColor.red.cgColor
layer.mask = shapeLayer
}
}
关于ios - 自定义 UITableViewCell 内的圆形 UIView 底角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52979174/
我有一个 uiview,其中包含其他自定义绘制的 uiview。现在我希望,当用户单击此父 View 时,它将扩展到带有动画的新定义的框架。我使用动画 block 取得了一些成功。问题是展开的 Vie
我正在创建当前显示的 UIView 的屏幕截图。在此过程中,我遇到了控件扭曲和拉伸(stretch)片刻(0.2-0.5 秒)的问题。它仅适用于 iPhone 6、6+。 我的简单代码在这里 (Xam
我想让主 UIView 负责将多个 UIView 之一添加为 subview 。由于任何时候只有一个 subview 处于事件状态,而 subview 完全覆盖了主视图,所以我还不如更换主视图。但这需
这真的只是好奇,但是标签属性有最大值吗?我假设标签是一个 UINT,但我不确定。 最佳答案 “标签”属性是一个 NSInteger。来自 Apple 的 docs : NSInteger Used t
我的布局中有一个 UIView 以便进行一些剪辑和分组,但是自动布局会在缩小时调整它的大小。我想给它一个固定的高度,但唯一的选择是设置顶部和底部空间。 有没有办法设置明确的高度约束? 最佳答案 我刚刚
使用 NSLayoutConstraint类,可以创建基于 View 基线 ( NSLayoutAttributeBaseline ) 的约束。但是,我还没有看到任何描述 UIView 的文档。实际上
我正在尝试创建一个 UIView,它显示一个半透明的圆圈,其边界内有一个不透明的边框。我希望能够通过两种方式更改边界 - 在 -[UIView animateWithDuration:animatio
我目前正在 iOS 中开发一个项目(使用 XCode 和 Swift)。我正在尝试为登录 View 实现以下 UITextFields: 我正在考虑不同的方法来做这件事,但它们看起来都很复杂。如果有人
我正在使用最新的 SDK 开发 iOS 应用程序。 我创建了一个自定义 UIView,我需要向该 UIView 添加一些控件。我也在使用 storyboards,并且我必须向其中添加这个 UIView
我已经通过界面生成器在 super View 中启用了Autoresize Subviews。有没有办法以编程方式禁用一个 subview View 的自动调整大小? 最佳答案 我假设您确实在使用自动
我正在寻找用 Swift 2.0 编写的适用于 iOS 8.0 或更高版本的答案。我有一个圆形的 UIView,我想扩展它但保留圆形的属性。 要设置 UIView,这是代码。 let frame: C
我有一个有趣的问题,但我不确定如何解决它。我正在尝试使用 @IBInspectable 扩展 UIView。但是,使用这种方法,拐角半径似乎是从 nib 文件的默认端设置的,而不是 View 的实际大
我想将 UIView 移动到圆圈内。 UIView 移动圆内的每个点,但不接触圆的边界线。我正在计算圆和 UIView 之间的距离。 var distance = sqrt( pow((tou
A 是一个自定义的 UIView B是UIImagePickerController.view,这个UIImagePickerController.showsCameraControls = NO A
我无法在启动时修改我的 UIView 高度。 我必须使用 UIView,我希望其中一个屏幕大小 * 70,另一个填补空白。 这是我的 @IBOutlet weak var questionFrame
我一直在想这个问题。 我的情况是我需要在 View 中显示很多网格,我有两个计划。 1、在UIView上画很多矩形。我试过了,但是当我放大 View 时,这条线很模糊。 2、给UIView添加很多CA
我可以通过简单地将容器拖动到新的 UIView 来成功地将第一个 UIView 嵌入到容器中,但是要添加过渡 View ,我无法在按键输入事件上用新 View 替换当前的嵌入 View 。 这是我的代
问题是... 我有一条路径,我创建了一个在其中绘制它的 View 。 View 与路径具有相同的维度。然后,我创建第二个 View ,在其中重写 sizeThatFit: 方法,以便缩放第一个 Vie
我正致力于快速设计自定义 UIimageview。我想使用类似于此的 beizerpath 创建一个 UIimageview 编码应该是快速的。任何帮助表示赞赏。谢谢 最佳答案 创建一个 CAShap
我有一个 iOS 应用程序可以在 UIView 上动态绘制形状(通过 drawRect),我正在研究将该应用程序(或其中的一小部分)移植到 Apple Watch 的可能性。不幸的是,在阅读相关帖子后
我是一名优秀的程序员,十分优秀!