ios - Swift 2 - 将选定的 CollectionView 单元格放在其他单元格的前面
<p><p>我的 ViewController 中有一个 <code>UICollectionView</code>。它已经设置好并且工作正常。</p>
<p>当单元格内部的按钮被按下时,我正在尝试缩放单元格。</p>
<p>我的代码缩放单元格但是,我找不到强制选择的单元格到其他单元格前面的方法。
现在单元格选择它总是在被选中之前的单元格后面。</p>
<p>如何强制选中的单元格在其他单元格前面放大?</p>
<pre><code>@IBAction func detailBtnAction(sender:UIButton){
let indexUser = (sender.layer.valueForKey("indexBtn")) as! Int
let indexPath = NSIndexPath(forItem: indexUser, inSection: 0)
let feedCell = feedCollectionView.cellForItemAtIndexPath(indexPath)
feedCell?.bringSubviewToFront(feedCollectionView)
feedCell?.contentView.bringSubviewToFront(feedCollectionView)
UIView.animateWithDuration(1.0) { () -> Void in
feedCell?.transform = CGAffineTransformMakeScale(5, 5)
}
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>看来你的顺序有点困惑。</p>
<p>来自文档:</p>
<blockquote>
<p>Moves the specified subview so that it appears on top of its siblings.</p>
<p>func bringSubviewToFront(_ view: UIView) </p>
<p>Parameters</p>
<p>view - The subview to move to the front. </p>
<p>This method moves the specified view to the end of the array of views in the subviews property.</p>
</blockquote>
<p>所以你的电话:<br/>
<code>feedCell?.contentView.bringSubviewToFront(feedCollectionView)</code><br/>
实际上意味着单元格内容 View 应该将 <code>feedCollectionView</code> 移到前面。<br/>
现在,这是基于命名的一些有根据的猜测,但它应该看起来像这样:<br/>
<code>feedCollectionView.bringSubviewToFront(feedCell?)</code></p>
<p>您可以在那里传递单元格本身,因为它继承自 <code>UIView</code>。</p></p>
<p style="font-size: 20px;">关于ios - Swift 2 - 将选定的 CollectionView 单元格放在其他单元格的前面,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34067009/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34067009/
</a>
</p>
页:
[1]