I have: - an AppDelegate class - two viewController classes - three nib files (MainWindow.xib, firstView.xib, secondView.xib)
I want: The secondView.xib should have an UIScrollView inside, so that I can add a lot of stuff to the view and it can be scrolled down.
Where would I have to conform to the UIScrollViewDelegate protocol now? I feel the AppDelegate class is the wrong place, because its far away from that secondView and not all my views want to use a UIScrollView.