iOS Flashcards

1
Q

Controller

A

UI logic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

UI Logic

A

How your model is presented

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Model

A

What your app does

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which of MVC should NEVER speak to each other?

A

The model and view

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

If its in the header file, is it public or private?

A

Public

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

If its in the implementation file, it’s [p]

A

Private

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Why nonactomic?

A

Everything UI happens in the main thread.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Data structure…

A

Instance variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the default data type for method return values?

A

id, which replaces int as default data type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Message Syntax

A

[receiver message]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the receiver?

A

The receiver is an object, and the message tells the object what action to take.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly