Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 545 Bytes

Method-Dispatch.md

File metadata and controls

18 lines (15 loc) · 545 Bytes
layout title parent
default
Method Dispatch
Swift

Method Dispatch


Coming Soon!


Dynamic dispatch is nothing new to the polymorphic programming world. The variety of dynamic dispatch mechanisms in iOS, owing to a blend of Objective-C & Swift runtimes each working its part, makes this an interesting topic to explore nonetheless.

The intended objective is to examine the 4 different types of dynamic dispatch mechanisms:

  • Objective-C RunTime Message Dispatch
  • Swift RunTime Method Dispatch
  • Static Dispatch
  • Inlining