gpt4 book ai didi

ios - 在 Xcode8 上自定义 UISegmentedControl 边框和背景 - Swift 3

转载 作者:行者123 更新时间:2023-11-28 14:55:48 25 4
gpt4 key购买 nike

我正在尝试自定义 UISegmented 控件的外观,如下图所示: enter image description here

更具体地说,我在尝试放下这个阴影、设置高度和背景颜色时遇到了问题。

你能帮帮我吗?

最佳答案

您可以通过子类化来自定义 UISegmentController。请看下面的代码。

class SegmentController : UISegmentedControl {

override func awakeFromNib() {
self.layer.borderWidth = 0
self.tintColor = UIColor.clear
self.backgroundColor = UIColor.white
let segAttributesSelected: NSDictionary = [
NSAttributedStringKey.foregroundColor: UIColor.red,
NSAttributedStringKey.font: UIFont.boldSystemFont(ofSize: 15)
]
let segAttributes: NSDictionary = [
NSAttributedStringKey.foregroundColor: UIColor.lightGray,
NSAttributedStringKey.font: UIFont.boldSystemFont(ofSize: 15)
]
self.setTitleTextAttributes(segAttributesSelected as [NSObject : AnyObject], for: UIControlState.selected)
self.setTitleTextAttributes(segAttributes as [NSObject : AnyObject], for: UIControlState.normal)
}

override func draw(_ rect: CGRect) {
self.layer.shadowColor = UIColor.black.cgColor
self.layer.shadowRadius = 2.0
self.layer.shadowOffset = CGSize.init(width: 0, height: 0)
self.layer.shadowOpacity = 1.0
self.layer.backgroundColor = UIColor.white.cgColor
}
}

对 Storyboard 中的约束进行适当调整以设置高度和位置。 Storyboard Screen short


最终输出

enter image description here

关于ios - 在 Xcode8 上自定义 UISegmentedControl 边框和背景 - Swift 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49390604/

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