菜鸟教程小白 发表于 2022-12-13 11:38:26

ios - 自定义可滑动的表格 View 单元格,一旦打开新的就关闭其他单元格


                                            <p><p>我正在关注来自 raywenderlich (<a href="http://www.raywenderlich.com/62435/make-swipeable-table-view-cell-actions-without-going-nuts-scroll-views#comments" rel="noreferrer noopener nofollow">How To Make A Swipeable Table View Cell With Actions</a>) 网站的教程,该教程向您展示了如何使用图层和委托(delegate)创建自定义单元格。 </p>

<p>现在我一切正常,购买我希望我的一个单元格在其他单元格打开时关闭,我该如何实现?或与 Messenger 应用一样,除非用户关闭当前的单元格选项,否则不允许用户打开另一个单元格选项。</p>

<p>我无法理解这一点,我看到很少有其他人也在评论中提出同样的问题,但没有人回复。 </p>

<p>任何有Objective-C知识的人都可以,我可以自己翻译成swift。</p>

<p>我使用本教程的原因是因为 Apple API 不允许将自定义按钮(使用 PaintCode)用作操作按钮。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我为尝试实现相同方法的其他人找到了一个非常简单的解决方案。</p>
<h3>创建一个方法 - <strong>closeOtherCells:</strong></h3>
<p>由于我们将所有单元格存储在 NSMutableSet 中,我们可以查看哪些单元格可以关闭。</p>
<pre><code>func closeOtherCells(close close: Bool){
    if close{

      //Check For Available Cell
      for cells in cellsCurrentEditing {

            //Get Table Cells at indexPath
            var cellToClose: CustomTableViewCell = self.tableView.cellForRowAtIndexPath(cells as! NSIndexPath) as! CustomTableViewCell

            //Call Reset Method in our Custom Cell.
            cellToClose.resetConstraintContstantsToZero(true, notifyDelegateDidClose: true)
      }
    }
}
</code></pre>
<p>现在只需在您的 <code>cellDidOpen:</code> 委托(delegate)方法中调用 <code>closeOtherCells:</code> 并使用 true 参数。</p>
<pre><code>func cellDidOpen(cell: UITableViewCell) {

    //Close Other Cells
    closeOtherCells(close: true)

    //Store Open Cell in NSMutableSet
    let indexPath: NSIndexPath = self.tableView.indexPathForCell(cell)!
    self.cellsCurrentEditing.addObject(indexPath)
}
</code></pre>
<p>我希望这对其他人有所帮助。 :)</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 自定义可滑动的表格 View 单元格,一旦打开新的就关闭其他单元格,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33425863/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33425863/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 自定义可滑动的表格 View 单元格,一旦打开新的就关闭其他单元格