AlexM
AlexM

Reputation: 57

Animate DatePicker. Is possible?

I would like to animate the entrance of a DatePicker.

Now, I show and remove the object whit this property:

datePicker.hidden=YES or
datePicker.hidden=NO

How can I animate the object like a View?

Upvotes: 1

Views: 1586

Answers (1)

picciano
picciano

Reputation: 22701

Have a look at block animations.

datePicker.alpha = 0.0f;
datePicker.hidden = NO;

[UIView animateWithDuration:0.5f animations:^{
    datePicker.alpha = 1.0f;
} completion:^(BOOL finished){}];

Upvotes: 2

Related Questions