I am trying to scroll tableview even there is no data at initial. to track - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
If there are more rows than visible area of UITableView cell, then only scrolling (vertically) is enable. but I’m trying table, in which there will be zero row at begining.
Note * I had placed UITableView from IB
in https://github.com/leah/PullToRefresh , it is working even there are less rows.
but one weird thing is, if I get back to view (contains UITableView contains less row) , now it works even after less row.
Please let me know, if anybody doesnot understand my problem
I don’t want to take any credits by myself.
all credit goes to Vince
If I set Bounces property of UITableView on IB, it is not actually setting YES for less rows,
after I do,
[self.table setBounces:YES];on viewDidLoad , scroll is enable even if there is no rows, 😉thank you vince again,