TableView:UITableView的移动行的问题

发布于 2022-09-06 13:07:35 字数 1094 浏览 22 评论 0

在创建移动行的代码时,
加粗的两行报错,根据教程中使用的确实是这个方法:

 func tableView(_ tableView: UITableView, moveRowAtsourceIndexPath: IndexPath, toIndexPath destinationIndexPath: IndexPath){

代码如下:

 //是否可编辑
    func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
        return true
    }
    
    //允许重新排序单元格,如果返回否则无法重新排序
    func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
        return true
    }
    
    //从行~到行
    func tableView(_ tableView: UITableView, moveRowAtsourceIndexPath: IndexPath, toIndexPath destinationIndexPath: IndexPath){
        
        **let item = Array[sourceIndexPath.row]
        
        Array.remove(at: sourceIndexPath.row)**
        Array.insert(item, atIndex: destinationIndexPath.row)
    }
       
        func didReceiveMemoryWarning() {
    }

问朋友说是没有sourceIndexPath这个值。

参考链接:How To Reorder/Rearrange Table View Cells In Xcode 8 (Swift 3)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红尘作伴 2022-09-13 13:07:35

现在解决了,是因为自己该打空格的地方没有打空格。可是点击Edit依然没有出现可以移动操作的右边的按钮。
猜想也许是数据源的问题。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文