TB_PeriscopePTR icon indicating copy to clipboard operation
TB_PeriscopePTR copied to clipboard

heightForRowAtIndexPath not called

Open kilolumen opened this issue 9 years ago • 0 comments

    // Set the CustomNavigationBar as delegate for a UIScrollView 
    func setupPulltoRefresh(scrollView:UIScrollView){
        if let navbar = self.customNavigationBar(){
            scrollView.delegate = navbar
        }
    }

the method not called

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

kilolumen avatar Jun 07 '15 05:06 kilolumen