Constraints not updating with device orientation change(约束不随设备方向更改而更新)
问题描述
我在 tableView 单元格中有一个
func configureColorSlider() {让 colorSlider = ColorSlider()让 xCell = colorCell.contentView.bounds.width让 yCell = colorCell.contentView.bounds.heightcolorSlider.frame = CGRect(x: xCell/4, y: yCell/4, 宽度: 200, 高度: 24)colorSlider.orientation = .horizontalcolorSlider.addTarget(self, action: #selector(ConfigureTimestampTableViewController.changedColor(_:)), for: .valueChanged)colorCell.contentView.addSubview(colorSlider)colorSlider.translatesAutoresizingMaskIntoConstraints = falseNSLayoutConstraint.activate([colorSlider.leadingAnchor.constraint(equalTo: colorLabel.trailingAnchor, 常量: 8),colorSlider.trailingAnchor.constraint(equalTo: colorCell.contentView.trailingAnchor, 常量: -8),colorSlider.topAnchor.constraint(equalTo: colorCell.contentView.topAnchor, 常量: 8),colorSlider.bottomAnchor.constraint(equalTo:colorCell.contentView.bottomAnchor,常量:-8)])}CALayers 不会响应其父 UIView 被调整大小而调整大小,无论是通过自动布局还是手动.
您只需向 ColorSlider 添加代码,当 ColorSilider 的大小/位置发生变化时,该代码会更新图层.幸运的是,UIView 上有一个专门用于此的方法.
覆盖 func layoutSubviews() {super.layoutSubviews()gradientLayer.frame = 边界}I have a color slider in a tableView cell that extends from the label to the trailingAnchor of the cell. The issue I am having is when the device orientation changes the color slider does not update its constraints and no longer extends the full length of the cell. Below is my code to set up the constraints on the color slider. Below are images to show the issue I am having. If my phone is already in landscape orientation when I present this scene the color slider extends the full length of the cell as desired. However, if I switch to landscape when already viewing this scene the slider appears as below. Here is the full code if that helps.
func configureColorSlider() {
let colorSlider = ColorSlider()
let xCell = colorCell.contentView.bounds.width
let yCell = colorCell.contentView.bounds.height
colorSlider.frame = CGRect(x: xCell / 4, y: yCell / 4, width: 200, height: 24)
colorSlider.orientation = .horizontal
colorSlider.addTarget(self, action: #selector(ConfigureTimestampTableViewController.changedColor(_:)), for: .valueChanged)
colorCell.contentView.addSubview(colorSlider)
colorSlider.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activate([colorSlider.leadingAnchor.constraint(equalTo: colorLabel.trailingAnchor, constant: 8),
colorSlider.trailingAnchor.constraint(equalTo: colorCell.contentView.trailingAnchor, constant: -8),
colorSlider.topAnchor.constraint(equalTo: colorCell.contentView.topAnchor, constant: 8),
colorSlider.bottomAnchor.constraint(equalTo: colorCell.contentView.bottomAnchor, constant: -8) ])
}
CALayers will not be resized in response to their parent UIView being resized, whether by auto layout or manually.
You just need to add code to your ColorSlider that updates the layer when the size/position of the ColorSilider changes. Luckily, there is a method on UIView that is specifically for this.
override func layoutSubviews() {
super.layoutSubviews()
gradientLayer.frame = bounds
}
这篇关于约束不随设备方向更改而更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:约束不随设备方向更改而更新
基础教程推荐
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
