Skip to content

Instantly share code, notes, and snippets.

@rpbaltazar
Last active May 31, 2016 01:46
Show Gist options
  • Save rpbaltazar/ae5fa788c4d9d7128fc0f8aad659bf1a to your computer and use it in GitHub Desktop.
Save rpbaltazar/ae5fa788c4d9d7128fc0f8aad659bf1a to your computer and use it in GitHub Desktop.
Questions captured from: http://albertodebortoli.com/blog/2016/05/28/best-ios-interview-epicfails/ and attempted answers
  1. Explain how the memory management works on iOS
  2. What is a weak qualifier and when should it be used
  3. Explain the MVC pattern
  4. Explain the MVVM pattern
  5. What are the property qualifiers that define the memory management behaviour?
  6. Describe ARC
  7. What’s the main problem with ARC?
  8. Explain what is dependency injection
  9. Is a block an object?
  10. Describe the behavior of objc_msgSend?
  11. Delegation is a common pattern on iOS and historically well-known, give an example
  12. When are the objects deallocated?
  13. Why do we use the * for the objects in Objective-C?
  14. Describe yourself using JSON
  15. Do you know how autolayout works under the hood?
@samkahchiin
Copy link

samkahchiin commented May 30, 2016

Question 1:

In Ruby, the memory management is taken care by the garbage collection (which will Sweep the unused, garbage objects back onto the free list when there are no objects remain on the free list).
In IOS, if you

  • need to keep an object around,
    you must retain it unless you know it's already been retained for you.
  • want to get rid of an object that you own,
    you need to release it, unless you know it's already been released for you

Hence, ARC is introduced in the way that, if no strong pointer points to it (retain count = 0), the object will be destroyed.

@rpbaltazar
Copy link
Author

Notes for Question 4.

MVVM stands for Model-View-ViewModel

It is somehow similar to MVC pattern, being sometimes considered da variation of it, but this pattern suggests the implementation of a ViewModel to make the translation of the Model's data into the data needed for the View. In this way, it allows yet another level of separation of concepts.

@samkahchiin
Copy link

@samkahchiin
Copy link

samkahchiin commented May 30, 2016

Notes for Question 3 & 4:

MVVM vs MVC

In MVVM:

  • User hits the view first
  • User can't see the model

In MVC:

  • User hits the controller first
  • The view knows about the model
    -Request first comes to the controller.
    -Controller binds the model with the view.
    -Logic is stored in the controller.

@samkahchiin
Copy link

samkahchiin commented May 31, 2016

Question 8

Dependency injection means giving an object its instance variables.

Fishing Examples

Let's imagine that you want to go fishing:

  • Without dependency injection, you need to take care of everything yourself. You need to find a boat, to buy a fishing rod, to look for bait, etc. It's possible, of course, but it puts a lot of responsibility on you. In software terms, it means that you have to perform a lookup for all these things.
  • With dependency injection, someone else takes care of all the preparation and makes the required equipment available to you. You will receive ("be injected") the boat, the fishing rod and the bait - all ready to use.

Why using it?

It can make testing lots easier

- Without Dependency Injection
Application needs Foo (e.g. a controller), so:
Application creates Foo
Application calls Foo
Foo needs Bar (e.g. a service), so:
Foo creates Bar
Foo calls Bar
Bar needs Bim (a service, a repository, …), so:
Bar creates Bim
Bar does something

- With Dependency Injection
Application needs Foo, which needs Bar, which needs Bim, so:
Application creates Bim
Application creates Bar and gives it Bim
Application creates Foo and gives it Bar
Application calls Foo
Foo calls Bar
Bar does something

http://www.jamesshore.com/Blog/Dependency-Injection-Demystified.html
http://stackoverflow.com/questions/130794/what-is-dependency-injection

@samkahchiin
Copy link

Question 9

Blocks are Objective-C objects, which means they can be added to collections like NSArray or NSDictionary.

https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/WorkingwithBlocks/WorkingwithBlocks.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment