I use the following code to add a date picker view to my app main view, on clicking a button.
- (IBAction)CalenderButton_Click:(id)sender
{
// code to add date picker -mydatepicker
//animating
[self.view addSubview:myPicker];
CGRect onScreenFrame=myPicker.frame;
CGRect offScreenFrame=onScreenFrame;
offScreenFrame.origin.y=self.view.bounds.size.height;
myPicker.frame=offScreenFrame;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5f];
myPicker.frame=onScreenFrame;
[UIView commitAnimations];
}
two things i need to implement is,
1.this code animates the view from bottom, how can i animate it from top??
2.if i click the button to add date picker again, i should check whether the view is already added, if yes, remove the sub view.
Thanks in advance
