Question

I cannot figure out how to set NSLayoutConstraint animation duration in iOS7. Here's my code:

self.loadingViewTop.constant = -[[UIScreen mainScreen] bounds].size.height;
self.loadingViewBottom.constant = [[UIScreen mainScreen] bounds].size.height;

[UIView animateWithDuration:30.0f animations:^{
    [self.loadingView setNeedsUpdateConstraints];
}];
Était-ce utile?

La solution

Oh you forget to call [self.view layoutIfNeeded]; inside animation block

Autres conseils

The solution:

self.loadingViewTop.constant = -[[UIScreen mainScreen] bounds].size.height;
self.loadingViewBottom.constant = [[UIScreen mainScreen] bounds].size.height;

[UIView animateWithDuration:30.0f animations:^{
    [self.view layoutIfNeeded];
}];
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top