cellForNextPageAtIndexPath в быстром

Привет это мой код:

override func tableView(tableView: UITableView, cellForNextPageAtIndexPath indexPath: NSIndexPath) -> PFTableViewCell {


    let cell = PFTableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "cell")

        cell.textLabel?.text = "Load more..."

    return cell

}

 override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {

    return 80
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.objects.count
}

    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{

        let cell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "cell")
        cell.textLabel?.text = self.objects[indexPath.row]["RalleyName"] as? String
        cell.detailTextLabel?.text = self.objects[indexPath.row]["UserName"] as? String

        return cell
}

дело в том, что я не знаю, правильно ли я реализую forNextPageAtIndexPath, потому что он просто не появляется.

пожалуйста помоги

0 ответов

Другие вопросы по тегам