iOS 布局动画在 GMSMapView 拖动时忽略持续时间
<p><p>您可以在下面比较两个 gif 时看到问题。 “收缩”和“拉伸(stretch)”动画都基于约束操作,并且 <code></code> 放置在 <code>-animateWithDuration</code>block 内。如您所见,本地图不移动时,它会按预期工作。但是当您开始拖动 map 时,“缩小”动画会立即发生。如果您仔细观察,您可能会注意到cornerRadius 动画仍然有效。这告诉我它可能与 map 有关(里面的 ScrollView ?不知道谷歌地图是如何工作的)调用它自己的布局 block 会干扰我的动画。也可能是因为cornerRadius 动画是使用CABasicAnimation 完成的,而不是UIView 动画。</p>
<p>Animated InfoView 不是 mapView 的 subview 。不确定当 mapView 调用内部布局方法时它是否会影响我的 infoView 的布局。 </p>
<p>我已经尝试了所有组合的选项 <code>UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationOptionOverrideInheritedDuration | UIViewAnimationOptionOverrideInheritedOptions</code> 只是看看它是否有帮助。它没有。</p>
<p>我想我可以直接克服这个操纵框架而不是操纵约束,它对用户来说看起来是一样的,但我觉得使用约束要优雅得多。我尽量避免操纵框架并使用自动布局。</p>
<p>任何想法是什么导致了这种情况以及如何使用自动布局动画来解决这个问题?</p>
<p><strong>更新</strong></p>
<p>我尝试过直接为帧设置动画 - 结果是一样的。所以它与自动布局无关。似乎当前 View 动画由于某种原因停止了。 </p>
<p>如果我用 CABasicAnimation 替换我的 UIView 动画 block ,它就像一个魅力。 </p>
<p>我被要求发布一些动画代码:</p>
<pre><code>- (void)shrink {
if (!self.isStretched) return;
self.stretched = NO;
;
;
CABasicAnimation *animation = ;
animation.duration = duration;
animation.timingFunction = ;
animation.fromValue = @0;
animation.toValue = @(shrinkedSize / 2.0);
;
self.layer.cornerRadius = shrinkedSize / 2.0;
self.heightConstraint.constant = shrinkedSize;
self.widthConstraint.constant = shrinkedSize;
self.positionYConstraint.constant = 0;
self.triangleHeightConstraint.constant = 0;
self.trianglePositionYConstraint.constant = 14;
[UIView animateWithDuration:duration * 2 delay:0 usingSpringWithDamping:0.85 initialSpringVelocity:0 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
;
} completion:^(BOOL finished) {
//
}];
}
</code></pre>
<p> <img src="/image/509Jq.gif" alt="enter image description here"/>
<img src="/image/oZD2C.gif" alt="enter image description here"/> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我在 Google (<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=10349" rel="noreferrer noopener nofollow">https://code.google.com/p/gmaps-api-issues/issues/detail?id=10349</a>) 上打开了一个关于此问题的错误,这是他们的回复:</p>
<blockquote>
<p>Our understanding is that this is happening because the mapView:willMove: call is being made while already inside a CoreAnimation transaction. Our suggested work around is to wrap the UIView.animateWithDuration call within a dispatch_async back to the main thread. Something along the lines of:</p>
<p>dispatch_async(dispatch_get_main_queue(), ^{
// animation block here.
});</p>
<p>Does that help?</p>
</blockquote>
<p>将 UIView.animateWithDurationblock 放在 dispatch_asyncblock 中对我有用。</p></p>
<p style="font-size: 20px;">关于iOS 布局动画在 GMSMapView 拖动时忽略持续时间,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/30399099/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/30399099/
</a>
</p>
页:
[1]