Swift PickerView标签

时间:2015-11-10 09:50:44

标签: swift ios9 uipickerview

我有权重值的选择器视图。我想在选定值的右侧添加“Kg”。我如何存档?enter image description here

2 个答案:

答案 0 :(得分:0)

试试吧。希望它有所帮助。

    let kg = UILabel(frame: CGRectMake(0,0, 10,10))
    kg.font = UIFont(name: "Helvetica Neue", size: 23)
    kg.text = "kg"
    kg.sizeToFit()
    kg.frame = CGRectMake(pickerView.bounds.width / 4 + kg.bounds.width, pickerView.bounds.height / 2 - (kg.bounds.width / 2) ,kg.bounds.width,kg.bounds.height)
    pickerView.addSubview(kg)

答案 1 :(得分:0)

所以我通过在选择器视图中放置一个标签并在界面构建器中以自动布局为中心来解决。