Skip to content

Latest commit

 

History

History
75 lines (41 loc) · 2.16 KB

File metadata and controls

75 lines (41 loc) · 2.16 KB

Framework 1 ~ 3

1) What is Framework?

Answer:

  • Framework is a package of header files, source files, binary files and resources.

2) What is Static Library?

Answer:

  • Library is a set of classes devoted for some specific purpose.
  • Static library is compiled library, it will be in the binary format.
  • The extension of static library is .a
  • Static libraries are loaded at compile time to the main program.
  • Adding static library increases the program size.

3) What is Dynamic Library?

Answer:

  • The target program just loads the references of the Dynamic Library at compile time.
  • The Dynamic library loads at runtime.
  • The extension of dynamic library is .dylib / .tbd.

Table Of Contents

Section 1, Data Type

Section 2, Operator

Section 3, Conditional Statement

Section 4, Enum

Section 5, functions

Section 6, struct

Section 7, initializers

Section 8, closures

Section 9, OOP

Section 10, static type vs dynamic type

Section 11, optional

Section 12, generic

Section 13, subscript

Section 14, access specifier

Section 15, higher order function

Section 16, delegate

Section 17, extension

Section 18, Memory Management

Section 19, protocols

Section 20, collections

Section 21, KVO and KVC

Section 22, Exception Handling

Section 23, Framework

Section 24, Objective-C