swift – 当滚动到底部时,UITableView加载更多

前端之家收集整理的这篇文章主要介绍了swift – 当滚动到底部时,UITableView加载更多前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在用户滚动到表格底部时加载更多数据并创建其他单元格。我正在使用JSON数据和MysqL
func dataJsonFromURL(url:String)->NSArray
{
    if let data = NSData(contentsOfURL: NSURL(string: url)!) {
        return ((try! NSJSONSerialization.JSONObjectWithData(data,options: [])) as! NSArray)
    }
    else{
        return data
    }
}

func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
    let cell = tableView.dequeueReusableCellWithIdentifier("NCell",forIndexPath: indexPath) as! TableViewCell22

    cell.backgroundColor = UIColor .clearColor()

    let mindata = (data[indexPath.row] as! NSDictionary)
}
你必须使用这种方法
override func tableView(tableView: UITableView,willDisplayCell cell: UITableViewCell,forRowAtIndexPath indexPath: NSIndexPath) {
            let lastElement = dataSource.count - 1
            if indexPath.row == lastElement {
                // handle your logic here to get more items,add it to dataSource and reload tableview
                }    
        }
原文链接:https://www.f2er.com/swift/320287.html

猜你在找的Swift相关文章