Hi, thanks for your response!
I feel that this just makes it one column wide
"numberOfComponentsInPickerView:
Return Value
The number of components (or “columns”) that the picker view should display"
What I am looking for is a picker or whatever type (UIPicker UIDatePicker) that only takes up one line of realestate, like the height of one row in a UITableView (no im not looking to put it in a tableview but this is a good description of the size) not half my screen. As yet I have not found a solution to do this, it may not be possible.
Quote:
Originally Posted by stephen
Try this, it works with UIPicker, not sure about the date picker though:
Code:
-(NSInteger)numberOfComponentsInPickerView:(UIPickerView *)routePicker
{
return 1;
}
|