EZ

Eduzan

Learning Hub

Eduzan
Eduzan / Objective C

Posing in Objective-C

In Objective-C, posing is a runtime mechanism that allows one class to completely replace another class so that all messages sent to the original class are handled by the posing class. The class that replaces the original is said to pose as it.

⚠️ Important (Modern Reality)
Class posing is deprecated and not supported with ARC. It existed in older Objective-C runtimes (pre–macOS 10.5). Today, it is mainly a theoretical and historical concept, useful for understanding the Objective-C runtime.


End of lesson.