我想插入一个带有图像的片段,但它只显示图像形状,该颜色与背景颜色相同,但不显示实际图像。
图像不是问题,我已经使用ImageView尝试过了,一切都很好。
这是viewDidLoad
中的代码:
let controller = UISegmentedControl()
controller.frame = CGRect(x: SCREENWIDTH/10, y: SCREENHEIGHT/10, width: SCREENWIDTH/10 * 8, height: SCREENHEIGHT/10)
controller.insertSegment(with: UIImage(named: "k.png"), at: 0, animated: true)
controller.insertSegment(withTitle: "test", at: 1, animated: true)
view.addSubview(controller)