I am trying to figure out how to have my tableView content scroll behind another view while having the table view bottom start point be above the other view. Basically trying to figure out how Apple does the same effect in there iMessage app where the tableView of a conversation start above the text field but scrolls behind it and has a blur effect.
Thanks in advance
If I understood you correctly then you would want to do this:-
contentInsetto table view equal to height of blur view so that when table loads the content doesn't load behind blurscrollIndicatorInsetsagain equal to height of blur view so your scroll bar doesn't scroll to top(bottom because inverted) of table.Try yourself: Design a tableView with cells > 20, add Visual Effect View, give height = 128 & add this in your
viewDidLoad():Do same to invert table cells:
This should achieve the iMessage like behaviour.