I am animating UIView when user touches on custom dropdown to show picker View from bottom side.UIView contains Pickerview...so when I change it's frame to move upwards.I get what I want, but pickerView doesn't recognize touch !(see screenshot below)

code is like this

    CGRect pickerFrame=self.pickerSheet.frame;
    CGRect viewFrame=self.view.frame;

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:SHEET_ANIMATION_DURATION];
//change Frame of View containing UIPickerView

pickerFrame.origin.y=202+animatedDistance;
viewFrame.origin.y-=animatedDistance;//animated distance is value by which view needs to move upward.
[self.pickerSheet setFrame:pickerFrame];
[self.view setFrame:viewFrame];

[UIView commitAnimations]; 

screenshot

link|improve this question

50% accept rate
But how you have created the UIPickerView ??? Paste code of it. – Surjit Joshi Dec 1 '11 at 10:25
@SurjitJoshi through IB...& i am adding it runtime in self.view[self.view addSubview:self.pickerSheet]; [self.pickerSheet setFrame:CGRectMake(0, 460, 320, 258)]; – iAmitWagh Dec 1 '11 at 10:29
feedback

1 Answer

first of all, ++please**, stop using this animation declaration, and bedin use new, block animation:

[UIView animateWithDuration:SHEET_ANIMATION_DURATION 
                          delay:0 
                        options:nil 
                     animations:^{
                         pickerFrame.origin.y=202+animatedDistance;
                         viewFrame.origin.y-=animatedDistance;
                     } 
                     completion:^(BOO f){
                         //any actions after animation ended
                     }];

Second, I think your problem is somewhere else. May by, you implementing your touches or picker wrong.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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