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];
}];