将图像与卡片翻转动画相结合

时间:2015-11-11 21:06:14

标签: ios swift

我正在尝试将图像组合起来并使用以下功能翻转它们:

public function getDropdown($model, $colomn)
    {
        $rows = $model::find()->orderBy('id')->asArray()->all();
        return ArrayHelper::map($rows, 'id', $colomn);
    }

这是使用swift。我有2个视图,它工作正常。我希望UIView.transitionFromView(self.frontImageView, toView: self.backImageView, duration: 1, options: UIViewAnimationOptions.TransitionFlipFromLeft, completion: nil) 是卡片的组合,看起来像一张空白空白的卡片,还有一个字母或图像。

我看到几篇关于使用backImageView

组合图像的帖子

当我为信件执行此操作时,我认为减慢了应用程序的速度......

以下是使用的代码(Card是UIView的子类)

UIGraphicsGetImageFromCurrentImageContext()

问题是,有更好的方法吗?什么更快?我相信结合图像可能是我可能缺少的简单的替代品。

0 个答案:

没有答案