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
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.
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
4
Q
How to change the color of the status bar?
A
- Go in the main file of the app and add the view option
- Go to the AppDelegate and put in the method application.setStatusBarStyle(IUStatusBarStyle.LightContent)