How to insert a new Row in bottom of the UITableView Swift

后端 未结 4 1309
傲寒
傲寒 2021-01-12 18:10

I use

func insertRowsAtIndexPaths(indexPaths: [NSIndexPath],
withRowAnimation animation: UITableViewRowAnimation)

method to insert a new Ro

4条回答
  •  不知归路
    2021-01-12 19:02

    Swift 3

        TableView.beginUpdates()
    
        let indexPath:IndexPath = IndexPath(row:(self.yourArray.count - 1), section:0)
    
        TableView.insertRows(at: [indexPath], with: .left)
    
        TableView.endUpdates()
    
        TableView.scrollToRow(at: indexPath, at: .bottom, animated: true)
    

自定义标题
段落格式
字体
字号
代码语言
提交回复
热议问题