is it posible to have navigationcontroller view and a subview on it (or independent view) which not moves when navigationcontroller is pushed or poped? Both views responds to user interaction.
is it posible to have navigationcontroller view and a subview on it (or independent
Share
Yes, using container view controllers this is absolutely possible.
UINavigationControllerand add it as a child view controller (usingaddChildViewController:) of the container view controller from step 1UINavigationControllers‘s view below the subview you added in step 1After that, you’re done.