Hi, I have a UINavigationBar that I put from Interface builder into my view controllers view, and also have a UIScrollView within this same view. The problem is that this way, the scroll doesn't work, the only thing I can do so far in order to get the scroll working is to get my view controller's view pointing to the scroll view. This way, the scroller works, but since the UINavigation bar is not within this scroll view, it doesn't show.
One solution to this was to just add the UINavigationBar to the UIScrollView, this way the navigation bar is shown and the scroll works. The problem is that the navigation bar scrolls along with the scroller's container view (wich is what is supposed to happen), but I want a more standard behavior: to let the navigation bar at the top, in a fixed position and being able to scroll the scroller.
Is there anyway to achieve this? Thanks in advance.