Hi Adam,
Normally, when you throw in any control into your custom cell (e.g. UITextField, UITextView, UISwitch, etc.), STV will automatically detect it and bind it to your object if you have objectBindings properly set up.
This is not the case however for a UIPickerView. This is due to several reasons, but mainly because a UIPickerView can have several columns, and thus there is no single object property that STV can automatically bind it to.
Having said that, STV 2.0 easily allows you to subclass SCControlCell, add your UIPickerView (either in code or in Interface Builder), and change the property values of the cell's bound object whenever the picker's value(s) change. Please tell me if you ever get stuck with doing this.