2011-07-21 120 views

回答

1

您可以添加UIPickerView作爲一個子視圖的UITableViewCell

[cell.contentView addSubView:pickerView]; 

不要忘記從heightForRowAtIndexPath返回適當的高度:方法。

if (cellContainsPickerView) return 200.0; // The height of the picker view 
相關問題