diff --git a/Libraries/Components/Picker/PickerIOS.ios.js b/Libraries/Components/Picker/PickerIOS.ios.js index 1ff658c19..8141120be 100644 --- a/Libraries/Components/Picker/PickerIOS.ios.js +++ b/Libraries/Components/Picker/PickerIOS.ios.js @@ -45,7 +45,7 @@ var PickerIOS = React.createClass({ _stateFromProps: function(props) { var selectedIndex = 0; var items = []; - ReactChildren.forEach(props.children, function (child, index) { + ReactChildren.toArray(props.children).forEach(function (child, index) { if (child.props.value === props.selectedValue) { selectedIndex = index; }