Basic iOS interview questions, what is runtime, what is runloop, how to write unit tests
Anónimo
n iOS development, "runtime" refers to the infrastructure provided by the Objective-C runtime library. This library is responsible for various dynamic features of Objective-C, such as message passing, dynamic method resolution, introspection, and more. It enables features like method swizzling, dynamic class creation, and adding methods to existing classes at runtime. The runtime system is crucial for many advanced Objective-C and Swift features.