Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the purpose of the "second click" selection mode in the interface builder?

When I click a UI element while designing a XIB, the UI element is selected like this: Selected button

If I click the same element again it is selected like this:

"second-click"-selected button

What is the purpose of this special selection mode?

like image 460
Viachaslau Tysianchuk Avatar asked Nov 26 '12 16:11

Viachaslau Tysianchuk


People also ask

What happens when the selection tool is over a deselected object?

Tip: When the Selection tool is over a deselected object or group, it changes to . When it is over a selected object or group, the tool changes to . When it is over an anchor point on a deselected object, a hollow square appears next to the arrow .

What are the basic switch settings?

These basic switch settings include device name, interface description, local passwords, message of the day (MOTD) banner, IP addressing, and static MAC address. You will also demonstrate the use of a management IP address for remote switch management.

How to avoid switching to edge select mode to select a loop?

If you want to avoid switching to Edge Select Mode to select a Face Loop, use the Alt-RMB shortcut. Different loop selection operations on a grid in Face Select Mode.

What are the basic selection techniques in AutoCAD?

The most basic selection techniques use either the mouse, or the mouse in conjunction with a keystroke. Procedures. To select an object in the viewport: Click one of the selection buttons on the toolbar: (Select Object), (Select And Move), (Select And Rotate), (Select And Scale), or (Select And Manipulate).


1 Answers

Well, this is just a mechanism for traversing the view hierarchy (and lock focus on nested subviews). While it seems that there's no difference between two modes in your example (except of course the lack of the resize handles in the 'focused' one) consider a more complicated object such as a tableview on OSX (notice also how the light blue color indicates the view being edited while the focus ring indicates its superview's frame - also note that this drill-down is based on the location of the mouse pointer. In this example in order to travel all the way down to the cell we have to click inside the bounds of the innermost element we're aiming at):

1st Click - Selects the outer element / container (ScrollView) enter image description here

2nd Click - Selects the TableView enter image description here

3rd Click - Selects the TableColumn enter image description here

4th Click - Selects the TableCell enter image description here

like image 111
Alladinian Avatar answered Oct 06 '22 05:10

Alladinian