0

I am trying to achieve whatsapp style drag tableview to show custom view, here is the screenshot

enter image description here

but I am clueless how to show custom UIView on top of UITableView when UITableView is dragged down

S.J
  • 3,063
  • 3
  • 33
  • 66
  • something like http://stackoverflow.com/questions/7537858/iphone-need-to-put-uiview-on-top-of-uitableview-in-fixed-position – sweta.me Feb 17 '17 at 13:14

1 Answers1

0

You can place your UIView behind the table view, and have its height grow as you drag down. Where you read the scroll offset for your table views scroll delegate.

StackUnderflow
  • 2,403
  • 2
  • 21
  • 28