Search code examples
iosobjective-cuitableviewuiscrollviewuiscrollviewdelegate

Scroll view can't perform delegate but table view can


I have a scroll view to show image and set inside tableview cell. Scroll view can’t perform scroll view delegate but table view can perform the scroll view delegate.

So, how can I perform delegate only scroll view?


Solution

  • When you scroll in scroll view the scroll view delegate will be called but the table view will get scrolled. You can not access only scroll view delegates inside table view.