I have a strange problem with contentInsent . I implement "Pull and release" to update the UITableView, and everything works fine, but in some cases I would like to display the status of the "download" without user interaction. So I thought I was just using contentInset as follows:
scrollView.contentInset = UIEdgeInsetsMake(60.0f, 0.0f, 0.0f, 0.0f);
Everything works fine to display 1 or 2 cells - out of 3 possible in appearance. However, as soon as the number of cells grows, my banner at the top does not appear, while manual scrolling works fine. Do I need to move the scroll besides moving the contents?
ios uitableview
Marcin
source share