sanketfirodiya / iOS-interview-preparation

Interview preparation guide for iOS developers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iOS Interview Preparation Guide

A repository of iOS questions and recommended blog posts relevant to various topics of iOS development.

For anyone practicing for an upcoming interview or even otherwise to just stay current.

Pull requests and suggestions to this repo are highly encouraged - Contribution guidelines.

  1. iOS SDK

  1. Objective-C runtime

  1. Memory Management

  • How does reference counting work in Objective-C?
  • What is NSAutoreleasePool And autorelease?
  • What are retain cycles and best practices to avoid them?
  • Under what circumstances would an app crash with EXC_BAD_ACCESS error?

Recommended reading:

  1. Auto Layout

  1. Multi-tasking - GCD, NSOperations etc.

  1. Design Patterns - Delegation, Singleton, Blocks etc.

Blocks

  • What are blocks and when would you use them in your app?
  • How can a block mutate variables declared outside the block?
  • How can blocks lead to memory retain cycles?

Recommended reading:

  1. App Architecture

  1. Core Data

  • What is core data and what are the different classes the build the core data stack?
  • How would you implement core data to work in a multi-threaded environment?

Recommended reading:

  1. Objective-C Language Features

  1. Swift Language Features

  1. Instruments and Profiling

  1. Debugging

  1. Code Signing

About

Interview preparation guide for iOS developers