App Development with Swift [1.8] Interface Builder Basics

App Development with Swift [1.8] Interface Builder Basics

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

Allows you to edit the properties related to an object's identity, such as what class it belongs to

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (18)

Section 1

(18 cards)

Allows you to edit the properties related to an object's identity, such as what class it belongs to

Front

In Swift, what is the Identity inspector used for?

Back

Provides a list of adjustable visual properties for the selected item

Front

In Swift, what is the Attributes inspector used for?

Back

initial view controller

Front

In Swift, this term is the first scene that will be viewed by the user when the app launches.

Back

canvas

Front

In Swift, this term refers to the backdrop of a storyboard, where you add and arrange scenes and user interface (UI) elements.

Back

Lists all the functions and variable names related to the object

Front

In Swift, what is the Connection inspector used for?

Back

A reference to a piece of code that will execute when the user interacts with a control

Front

In Swift, what is an IBAction?

Back

A reference to a visual element in code so it can be adjusted at runtime

Front

In Swift, what is an IBOutlet?

Back

That the scene is the initial view controller

Front

What does the gray arrow next to a storyboard scene indicate?

Back

Displays a list of each view controller in the scene, along with a hierarchical list of the elements within each view controller

Front

In Swift, what is the Document Outline used for?

Back

(1) Maintainability, (2) Ease of use, and (3) Supports multiple screens

Front

What are three advantages to using Interface Builder over setting up views programmatically?

Back

Allows you to adjust the size and position of the selected element within the scene

Front

In Swift, what is the Size inspector used for?

Back

action

Front

In Swift, this term connects a method in source code and a control in Interface Builder, allowing particular code to run when a user interacts with the app's controls.

Back

scene

Front

In Swift, this term is a storyboard representation of a screen of content in your app.

Back

XIB

Front

In Swift, this type of file represents a single scene or view in iOS, and can be opened and modified in Interface Builder.

Back

Document Outline

Front

In Swift, this term is a feature in Interface Builder that displays a list of all scenes and UI elements in a given storyboard.

Back

A XIB represents a single view object, while a storyboard represents multiple views, scenes, and how to navigate between them.

Front

How is an XIB different from a storyboard?

Back

outlet

Front

In Swift, this term connects a variable in source code to an object in the storyboard, allowing the code to get information from the object and to make changes as the app is running.

Back

view controller

Front

In Swift, this term manages a set of views, and coordinates the flow of information between the app's data model and the views displaying the data.

Back