在 animateAlongsideTransition 块内的 UIImage 上进行交叉溶解

Posted

技术标签:

【中文标题】在 animateAlongsideTransition 块内的 UIImage 上进行交叉溶解【英文标题】:Doing a cross dissolve on a UIImage inside a animateAlongsideTransition block 【发布时间】:2016-02-22 23:33:45 【问题描述】:

我为UINavigationController 过渡添加了一个动画,其中涉及重新定位UIImageView

transitionCoordinator()?.animateAlongsideTransition( context in
    UIView.performWithoutAnimation 
        // ...
    

    // ...

    myImageView.frame = newFrame
, completion: 
    // ...
)

此代码位于viewWillAppear(_:) 中。到目前为止,此代码运行良好。但是,我不仅想更改图像视图的框架,还想使用交叉溶解来更改图像。我试过这个:

transitionCoordinator()?.animateAlongsideTransition( context in
    UIView.performWithoutAnimation 
        // ...
    

    // ...

    myImageView.frame = newFrame
    UIView.transitionWithView(boardImageView,
        duration: context.transitionDuration(),
        options: .TransitionCrossDissolve,
        animations: 
            myImageView.image = newImage
    , completion: nil)
, completion: 
    // ...
)

但这不起作用 - 它只是在动画完成后更改图像视图的图像(没有交叉溶解)。有没有办法在过渡期间进行交叉溶解?

【问题讨论】:

【参考方案1】:

只需手动执行过渡会完成的操作。在调用animateAlongsideTransition 之前,将一个新的图像视图放入界面与旧图像视图相同的位置,alpha0。在动画中,将其alpha更改为1,将旧图像视图的alpha更改为0,从而可见地执行交叉溶解。 (当然,在这里也可以做任何其他动画。)在完成块中,删除旧的(现在不可见的)图像视图。

【讨论】:

以上是关于在 animateAlongsideTransition 块内的 UIImage 上进行交叉溶解的主要内容,如果未能解决你的问题,请参考以下文章

在模态演示中使用 [UIViewControllerTransitionCoordinator animateAlongsideTransition:completion:] 时,不调用动画块

分配的变量引用在哪里,在堆栈中还是在堆中?

NOIP 2015 & SDOI 2016 Round1 & CTSC 2016 & SDOI2016 Round2游记

秋的潇洒在啥?在啥在啥?

上传的数据在云端的怎么查看,保存在啥位置?

在 React 应用程序中在哪里转换数据 - 在 Express 中还是在前端使用 React?