Daniel Klöck
Daniel Klöck

Reputation: 21137

How to zoom in storyboard (Xcode 6)

Since yesterday, the new Xcode6 has been released. Is it possible to zoom in the storyboard view?

Upvotes: 18

Views: 14873

Answers (6)

yonilevy
yonilevy

Reputation: 5428

For anyone wondering, the zoom feature doesn't seem to exist for MacOS storyboards :( See discussion here

Upvotes: 1

Aaron Brager
Aaron Brager

Reputation: 66224

You can zoom in and out by pinching on your trackpad.

You can also use ++{ and ++} to zoom in and out.

Upvotes: 18

A. Nony Mous
A. Nony Mous

Reputation: 41

Zooming was a bit kludgey in Xcode 6 (pinch-zoom worked best for me), but it looks like zooming has changed for the better in Xcode 7.

In Xcode 7, if you want to zoom your storyboard you can simply use ++ to zoom in, and +- to zoom out.

BTW, this is the same key combination Apple uses to zoom in/out in Safari and other apps.

Upvotes: 4

Daniel Popov
Daniel Popov

Reputation: 171

This is one of the sloppiest keyboard shortcuts, implemented by Apple. To get } you must hit shift, but hitting shift is a system-wide command to slow animations. I really recommend changing the shortcut in preferences.

Upvotes: 3

coolbeet
coolbeet

Reputation: 1665

In my experience, in Xcode 6, the best way to zoom in/out in xib is using the new Preview feature in assistant editor, you can just use touch pad to do normal pinch in/out to do zoom.

More info here: https://developer.apple.com/library/ios/recipes/xcode_help-interface_builder/chapters/PreviewingLayouts.html

Upvotes: 0

Cyrille
Cyrille

Reputation: 25144

It's possible to zoom out on storyboard, as always.

Edit: Right-click (or ctrl-click) on an empty area of your storyboard to show a contextual menu.

Upvotes: 20

Related Questions