Is there a way to get the frame of the currently selected UIPickerView's item?
I tried the following (as suggested below) but I always get a nil back:
-(void) pickerView:(UIPickerView *)pickerView
didSelectRow:(NSInteger)row
inComponent:(NSInteger)component{
UIView *selected = [pickerView viewForRow:row forComponent:component];
}