菜鸟教程小白 发表于 2022-12-13 08:54:54

ios - UICollectionViewCell 翻转动画


                                            <p><p>我想在用户触摸我的单元格时制作一个翻转动画。翻转单元格时,背面应显示另一幅图像。</p>

<p>我已经通过在我的单元格内容上方放置一个封面图像来解决这个问题。</p>

<p>如何强制单元格进行翻转动画?我只能通过重新加载单元格使其工作,但这有副作用。</p>

<p>如何强制翻转动画并在单元格旋转 180 度时更改其状态?</p>

<p>这是我的 UICollectionViewCell 中包含动画的代码:</p>

<pre><code>func makeImageVisible(visible:Bool, animated: Bool){

      if(animated){
            UIView.transitionWithView(self.contentView, duration: 0.5, options: UIViewAnimationOptions.TransitionFlipFromLeft, animations: { () -&gt; Void in
                  self.coverImageView.hidden = visible
            }, completion: nil)
      }
      else{
            self.coverImageView.hidden = visible
      }
    }
</code></pre>

<p>单元格包含一些被封面图片覆盖的 View 。根据状态,封面图片是否隐藏。</p>

<p>这是我的 cellForIndexPath 方法:</p>

<pre><code>func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -&gt; UICollectionViewCell {

    let cell = collectionView.dequeueReusableCellWithReuseIdentifier(&#34;MemoryGameCell&#34;, forIndexPath: indexPath) as! MemoryGameCell

    cell.setImage(self.image!)
    cell.makeImageVisibile(self.imageIsVisible(indexPath), animated: self.imageIsTemporaryVisible(indexPath))

    return cell
}
</code></pre>

<p>如果一个单元格被触摸,我将其放入可见单元格数组并重新加载 Collection View 。我通过直接调用 makeImageVisible 尝试了它而没有重新加载collectionview,但是没有任何反应。
任何想法可能是什么问题?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以在 UITableView 的 didSelectRowAtIndexPath 委托(delegate)方法上制作 UIView 动画。这是您应该调用的方法:</p>

<pre><code>func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath   indexPath: NSIndexPath) {
      if(animated){
            UIView.transitionWithView(self.contentView, duration: 0.5, options: UIViewAnimationOptions.TransitionFlipFromLeft, animations: { () -&gt; Void in
                  self.coverImageView.hidden = visible
            }, completion: nil)
      }
      else{
            self.coverImageView.hidden = visible
      } }
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UICollectionViewCell 翻转动画,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31211963/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31211963/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UICollectionViewCell 翻转动画