Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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];
}
share|improve this question

1 Answer

UIView *view=[picker viewForRow:[picker selectedRowInComponent:1] forComponent:1];


CGRect viewframe=[view frame];
share|improve this answer
I always get a nil back from viewForRow:forComponent: I call it within pickerView:didSelectRow:inComponent: Any ideas? O:-) – Fernando Jul 9 '11 at 11:53
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view here u have to return the view then only u can retrieve them later – Vijay-Apple-Dev.blogspot.com Jul 9 '11 at 12:12
implement above delegate method – Vijay-Apple-Dev.blogspot.com Jul 9 '11 at 12:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.