vote up 6 vote down star
6

What are some uncommon or "hidden" features of Interface Builder you wish you would have known about when first learning Xcode + Interface Builder?

Edit:

Xcode specific tips here.

This question is specifically concerned with the GUI and not so obvious features of Interface Builder. And only tangentially related to Xcode.

flag
Rollback to original version. We already have a very active hidden-features-of-Xcode question. – Nikolai Ruhe Nov 1 at 10:10

6 Answers

vote up 2 vote down
#pragma mark -
#pragma mark Messages from SomeDelegate protocol

/* ... */

#pragma mark -
#pragma mark Stupid debugging stuff

/* ... */

Makes the inspector really useful -- particularly that horizontal line that comes with mark - (a great visual cue), and I didn't know about it until reading someone else's code. Relatively newbish, but useful if you don't know it.

link|flag
Interface Builder related? – Nikolai Ruhe Nov 1 at 0:31
He tagged it Xcode, too. – Jed Smith Nov 1 at 0:31
vote up 1 vote down

I only found the Xcode User Defaults Reference the other day. It has a good number of things not available in the preferences UI.

link|flag
vote up 1 vote down

Interface builder has plugin architecture for custom views.

link|flag
vote up 1 vote down

You can use the mouse to measure the distance in pixels between interface elements: Select an element, like a button, then hover the mouse over another element and press option. This also works for subviews, like scrollers in a table view.

link|flag
vote up 1 vote down

Sometimes it gets quite difficult to select an interface element that's buried in a deeply nested hierarchy of other elements (like a cell in a table column in a table view in a scroll view in the content view of a window).

Pressing shift while right-clicking on a view displays a nicely sorted stack of items to select.

link|flag
Nice tip! Very useful, thanks. That is exactly the kind of stuff I was looking for. – Gordon Potter Nov 3 at 23:49
vote up 1 vote down

After customizing a view or building a view hierarchy you can drag that view back to the library to save it in the current state. You give it a name and description. It will show up in a "Custom Objects" section and can be reused in other nibs.

link|flag
Interesting. Does this preserve bindings and outlets? That way you can just use boilerplate in xcode for each project. Another example, is it possible to create custom objects that has specific bindings and outlets to another custom object? In other words can you save sets of objects pre configured? I guess this would really involve saving custom nibs for later use, depending on the complexity of the custom object or view. – Gordon Potter Nov 4 at 0:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.