我正在尝试从viewController顶部的底部设置UIWebView的动画,我正在使用砌体(https://github.com/Masonry/Masonry)。
我最初创建的webview大小为0 - (x,y,height和width),然后我尝试对其进行动画处理,以便webview动画显示在viewcontroller的“顶部”。显示了webview,但它没有动画到位 - 它只是立即出现。 任何有经验的人都可以指导我朝着正确的方向前进吗?
这是我的按钮操作
-(void)didPressBtn{
self.infoView = [UIWebView new];
self.infoView.scalesPageToFit = YES;
self.infoView.backgroundColor = [UIColor whiteColor];
self.infoView.delegate = self;
[self.scrollView addSubview:self.infoView];
[self.infoView makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(@(0));
}];
[self.scrollView layoutIfNeeded];
//FIXME: Hmmm it doesn't really animate!?
[UIView animateWithDuration:1 animations:^{
[self.scrollView setContentOffset:CGPointMake(0, 0)];
[self.infoView makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.scrollView);
}];
[self.scrollView layoutIfNeeded];
} completion:^(BOOL finished) {
[self.infoView loadRequest:[[NSURLRequest alloc] initWithURL:[[NSURL alloc] initWithString:NSLocalizedString(@"INFORMATION_URL", )] cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData timeoutInterval:15]];
}];
}
我的viewDidLoad
- (void)viewDidLoad
{
[super viewDidLoad];
self.scrollView = [UIScrollView new];
self.scrollView.backgroundColor = [UIColor whiteColor];
[self.view addSubview:self.scrollView];
[self.scrollView makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view);
}];
UIView *contentView = [UIView new];
[self.scrollView addSubview:contentView];
[contentView makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.scrollView);
make.width.equalTo(self.scrollView);
}];
//Then adding buttons and such...
}
答案 0 :(得分:17)
关于didPressButton
的一个快速观察。您正在使用mas_makeConstraints
将边缘设置为@0
,然后再使用mas_makeConstraints
再次更改它们以便滚动视图填充。这会在第一组之上增加矛盾的约束。
相反,您可以使用mas_remakeConstraints
替换该视图上的现有约束。
对于动画,我使用的模式是首先更新约束(不在动画块内),然后为布局设置动画:
[UIView animateWithDuration:1
animations:^{
[theParentView layoutIfNeeded];
}];