约束不随设备方向更改而更新

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 = .horizo​​ntalcolorSlider.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
}

这篇关于约束不随设备方向更改而更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
Dropbox Files.download does not start when number of files in folder is gt; 1000(当文件夹中的文件数为1000时,Dropbox Files.Download不会启动)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)