I have a UIPickerView in my viewController,
and so far this pickerView is just a normal one, I mean it has 2 components, with several rows in each component, and a title for each row on the left.
And till now I'm using these methods of a UIPickerView as well as its datasource and delegate.
#pragma mark - Picker View Data Source
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {
...
}
- (NSInteger)pickerView:(UIPickerView *)pickerView
numberOfRowsInComponent:(NSInteger)component {
...
}
#pragma mark - Picker View Delegate
- (NSString *)pickerView:(UIPickerView *)pickerView
titleForRow:(NSInteger)row forComponent:(NSInteger)component {
...
}
Now I need to add some text on the right of these rows, and it should be a UILabel I believe.
So there should be 2 UILabels in 1 row of this pickerView.
Having read the document I found these two methods that maybe I should use:
- (UIView *)viewForRow:(NSInteger)row forComponent:(NSInteger)component
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row
forComponent:(NSInteger)component reusingView:(UIView *)view
but now I have a few questions here.
1st. What is the relationship of these 2 methods? The upper one is a method in UIPickerView class, and the lower one is a method in UIPickerViewDelegate.
Should I implement these 2 methods together? Or just one of them according to my need? And how does the reusingView works?
2nd. I even don't know what the height of a origin row in the UIPickerView is, so if I'm going to use a UIView with 2 Labels as the returning view in the methods, what is the returning view's frame?
Thanks a lot!