guys. I have table view controller and modal view. Sometimes after closing modal view, my table view isn’t scrolling. May be you know, where is problem?
PS: My modal view is very “heavy”, but it shouldn’t cause problems.
guys. I have table view controller and modal view. Sometimes after closing modal view,
Share
I have seen behaviour similar to this. I bet your table view controller is being unloaded due to a memory warning when your modal is visible (you mention that the modal is “heavy” – I assume you mean heavy in terms of memory footprint). Then it is re-loaded when you dismiss the modal. I have quite often seen table views not able to scroll when they are initially loaded.
I think that a workaround I have used in the past is to alter the table view’s frame height to be bigger then back again to the right size in
viewWillAppear:. I suggest you try something like that.In the meantime – I think you should try to nail down a simple sample project that shows the issue and file it as a radar.