I'm trying to implement a scrollView on my UINavigationBar
like the Tinder UI.
When I implement it using
[self.navigationController.navigationBar addSubview:self.navigationBarScrollView];
the scrollView, shifts below like so:
Now when I use
self.navigationItem.titleView = self.navigationBarScrollView;
I get this:
Is there another approach to it?
PS - the iPhone screenshot is an image in a UITableView
.