2016-04-11 82 views
0

想要創建具有單個組件的不同行高度的UIPickerView。用UIPickerViewDataSource和UIPickerViewDelegate方法可以做到這一點嗎?UIPickerView使用相同組件的不同行高度swift

func pickerView(pickerView: UIPickerView, rowHeightForComponent component: Int) -> CGFloat { 

    return 40 
} 
+0

您可以嘗試根據不同的「組件」返回不同的值 – zcui93

回答

0

我很確定rowHeightForComponent只被調用一次,因此沒有辦法區分特定的行。所以這是不可能的。