I want to create a layout similar to the default Weather app in iOS. My controller has a UIView on top and a UITableView below it. I want to resize the dynamic view from above while viewing the scroll table. I made a delegate to the table view view manager, so I can resize the top view as long as scrollViewDidScroll(scrollView: UIScrollView) is called.
The problem is that I want to disable scrolling of the table view when resizing the top view. Any ideas? Or maybe my approach to this scheme is wrong, and should I use another one?
source share