Results 3 comments of YingDeYu

> > 调试了下,不能复现问题,能否提供比较详细的问题描述以及 `picker` 所渲染的数据。 > > ![demo2](https://user-images.githubusercontent.com/20694238/50584131-97778d80-0ea8-11e9-8a21-29394af9e32d.gif) > > 单列选择 pickerValueArray只有一个数据时 点击取消或者确定都会报这个错 是pickerValueDefault 的问题,不要设置pickerValueDefault

updae my template demo

hello, you can refer to this example 👌 ## Example ```javascript class Cell extends Component { render() { return ( this.props.onSelect(this.props.item)}> {this.props.item} ); } } //... class MyComponent extends Component...