我迅速使用名为AssistoLab / DropDown的吊舱
,我想更改其上的文本的文本对齐方式。
我尝试使用
dropDown.textAlignment = .right
但这对我不起作用
有人处理这个吊舱吗?
答案 0 :(得分:0)
尝试
MyDropDown.customCellConfiguration = { (index: Index, item: String, cell: DropDownCell) -> Void in
// Setup your custom UI components
cell.optionLabel.textAlignment = .right
}
答案 1 :(得分:-1)
设置customCellConfiguration
中的DropDown
,
dropDown.customCellConfiguration = { (index, item, cell) in
cell.optionLabel.textAlignment = .right
}