How do I add multiple components to a PickerView?
It may be a simple question but how do I add multiple components to a UIPickerView? I use NSMutableArray to populate one component but I dont know how to populate the others. I also need to change the value of a label when a row is selected. Thanks in advance Kieran Tiquelou I take it that you are a beginner. Here's how to implement the methods nacho has rightly pointed out: - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView { // return the number of components required return 2; } You can use other NSMutableArray 's to populate the components. Assuming that you have 2