![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbkTaqt%2FbtsJWWlLZks%2FsjSD0w6Ckckkvi5B6MB6yk%2Fimg.png)
[Swift] Method Dispatch
·
🍎 Dev/Swift
SweepSwift iOS 면접 질문에 대한 답을 작성한 김에 iOS 개발자라면 앱의 기능향상 면에서 꼭 고려해봐야한다는 Method Dispatch에 대해 정리해보기로 했다. ✔︎ Method DispatchMethod dispatching is the process of finding the address of instructions to be executed by the CPU when a particular method is called. 어떤 인스턴스의 호출구문에서 프로그램이 어떤 메서드를 실행할지 선택하는 것을 메소드 디스패치라고 한다.어느 시점(컴파일타임 vs 런타임)에 어떤 method를 사용할지를 결정하느냐에 따라서 Static Dispatch와 Dynamic Dispatch로 나뉜..