插入包含图片的细分无法正常工作

时间:2019-05-11 21:58:51

标签: swift uiimage uisegmentedcontrol

我想插入一个带有图像的片段,但它只显示图像形状,该颜色与背景颜色相同,但不显示实际图像。

图像不是问题,我已经使用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)

https://i.stack.imgur.com/nfk4k.png

https://i.stack.imgur.com/fTrN5.png

0 个答案:

没有答案