Start Developing iOS Apps Today Flashcards

1
Q

Objective-C

A
  • The language that powers all iOS apps and frameworks.

- A superset of C

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

Tool develop apps

A

iOS software development kit (SDK)
Xcode
Apple’s integrated development (IDE)

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

Basic tasks in code

A

Create objects,
Compare objects,
Query objects for information,
Access objects in collections (arrays).

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

Frameworks

A

Contains a library of methods that your app can call

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

API

A

Application Programming Interface

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

Protocol or interface

A

Common means for unrelated objects to communicate with each other

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

Design Patterns provides

A

A solution to a common software engineering problem. Patterns are abstract designs, not code.

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

Abstract

A

Existing in thought or as an idea but not having a physical or concrete existence

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

Design

A

A plan or drawing produced to show the look and function or workings of a building, garment, or object before it is built or made

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

Intuitive

A

Using or based on what one feels to be true even without conscious reasoning

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

Interactive

A

(of two people or things) influencing or having an effect on each other

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

Engaging

A

Charming and attractive

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

@autoreleasepool statement supports …

A

Automatic Reference Counting (ARC), automatic object-lifetime management for app

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

UIKit framework provides …

A

All classes, app need, construct, manage, user interface

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

Delegation

A

design pattern, object acts on behalf of, or in coordination with, another object

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

Info.plist file

A

Property list ( list of key-value pairs), contain information, app, name, icon

17
Q

Storyboard contain

A

archive of object, tradition, connections, define, app’s user interface

18
Q

view controller

A

Object, manage, area of content

19
Q

initial view controller

A

first view controller, get loaded when app starts

20
Q

A view is …

A

object, draw content in rectangular area of screen, handle events caused by user’s touches.