iOS Flashcards
1
Q
Controller
A
UI logic
2
Q
UI Logic
A
How your model is presented
3
Q
Model
A
What your app does
4
Q
Which of MVC should NEVER speak to each other?
A
The model and view
5
Q
If its in the header file, is it public or private?
A
Public
6
Q
If its in the implementation file, it’s [p]
A
Private
7
Q
Why nonactomic?
A
Everything UI happens in the main thread.
8
Q
Data structure…
A
Instance variables
9
Q
What is the default data type for method return values?
A
id, which replaces int as default data type
10
Q
Message Syntax
A
[receiver message]
11
Q
What is the receiver?
A
The receiver is an object, and the message tells the object what action to take.