Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding navigationItem.titleView in storyboard is failing

I can add a titleView to my navigationItem very easily in code:

UIImageView *navImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"nav_logo"]];
UIView *titleView = [[UIView alloc] initWithFrame:navImageView.frame];
[titleView addSubview:navImageView];
self.navigationItem.titleView = titleView;

However, I'm trying to do this within my storyboard, and am failing miserably.

Here's what I've done:

  1. Drag and drop a UIView on top of my VC's Navigation Item.
  2. Drag and drop a UIImageView on top of the UIView
  3. Add width/height/leading/top constraints
  4. Set the image property of the UIImageView

I also set the background of my UIView to red (well ok, more like a burnt orange) to illustrate the problem.

Here's how things render out:

enter image description here

I'm surprised this has been so difficult. Any ideas?

like image 283
djibouti33 Avatar asked Apr 10 '15 22:04

djibouti33


3 Answers

In the storyboard interface builder

  • Select your view controller
  • In the the attribute inspector (⌘⌥ 4), under "Simulated Metrics", for the "Top Bar" selector, choose one of the Navigation Bars
  • Then you should be able to drag a UIView over the title on the Storyboard
  • You can change the "Top Bar" setting back to "Inferred" if you'd like

Here is an image of the storyboard after dragging a UIView over the title:

after dragging UIView over the title

like image 67
mattliu Avatar answered Nov 10 '22 21:11

mattliu


It is impossible to have autolayout constraints for navigation items in a storyboard. I believe you are actually dragging the views onto the actual view controller. You can only drag in barButtonItems into the navigationItem.

An alternative option is to

  1. Create the view in a separate xib without using autolayout
  2. Load the xib in code
  3. setTranslatesAutoresizingMaskIntoConstraints to true
  4. Assign the titleView to the view

From my experience, using autolayout with any views in the navigationBar does not work well and leads to unexpected results. For example, I ran into errors where presenting a UIActivityViewController caused unexpected constraints to be added to the navigationItem's titleView.

Before: enter image description here

After presenting UIActivityViewController and skipping step 3: enter image description here

like image 5
lsw Avatar answered Nov 10 '22 23:11

lsw


For those who found yourself fighting with problem of adding custom view or UIButton inside UIBarButtonItem in Xcode 8 here is the solution: Xcode accepts dragging only in controller's view property now (Xcode 7 allowed to drag directly to UINavigationItem). If you delete controller's view, it will allow you to drag items onto the navigation bar. So create new empty navigation controller, remove main view inside root view controller, drag items onto the navigation bar, copy this navigation item (not the bar itself) and paste it to your target controller, it will replace your old navigation items. After remove that empty controller. PROFIT!

It seems apple Xcode team produce new quests for developers with even more passion than their main product.

like image 2
m8labs Avatar answered Nov 10 '22 23:11

m8labs