我正在关注来自 raywenderlich (How To Make A Swipeable Table View Cell With Actions) 网站的教程,该教程向您展示了如何使用图层和委托(delegate)创建自定义单元格。
现在我一切正常,购买我希望我的一个单元格在其他单元格打开时关闭,我该如何实现?或与 Messenger 应用一样,除非用户关闭当前的单元格选项,否则不允许用户打开另一个单元格选项。
我无法理解这一点,我看到很少有其他人也在评论中提出同样的问题,但没有人回复。
任何有Objective-C知识的人都可以,我可以自己翻译成swift。
我使用本教程的原因是因为 Apple API 不允许将自定义按钮(使用 PaintCode)用作操作按钮。
Best Answer-推荐答案 strong>
我为尝试实现相同方法的其他人找到了一个非常简单的解决方案。
创建一个方法 - closeOtherCells:
由于我们将所有单元格存储在 NSMutableSet 中,我们可以查看哪些单元格可以关闭。
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)
}
}
}
现在只需在您的 cellDidOpen: 委托(delegate)方法中调用 closeOtherCells: 并使用 true 参数。
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)
}
我希望这对其他人有所帮助。
关于ios - 自定义可滑动的表格 View 单元格,一旦打开新的就关闭其他单元格,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/33425863/
|