Simple app Flashcards

1
Q

What are builder interface constants?

A
  • Are type qualifiers used by Interface Builder to create connections between user experience elements and app code.
  • Examples: IBAction, IBOutlet
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is IBAction?

A
  • Is a type qualifier used by Builder Interface to expose a method as a connection point between user interface elements and app code.
  • Create an action connection when you need to send a message from a control to your code.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is IBOutlet?

A
  • Is a type qualifier used by Builder Interface to expose a symbol as a connection point to send messages from the app code to a user interface element.
  • Create an outlet connection when you need to send a message from your code to a user interface object
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to change the color of the status bar?

A
  1. Go in the main file of the app and add the view option
  2. Go to the AppDelegate and put in the method application.setStatusBarStyle(IUStatusBarStyle.LightContent)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly