質問

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];
}];
役に立ちましたか?

解決

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

他のヒント

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];
}];
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top