Top "Objective-c-runtime" questions

The Objective-C runtime is a runtime support library provided with an implementation of the Objective-C language.

Avoid extra static variables for associated objects keys

When using associated objects, an Objective-C runtime feature available starting from iOS 4 and OSX 10.6, it's necessary to define a key …

objective-c objective-c-runtime associated-object
Call instance method with objc_msgSend

I'm trying to use the objc_msgSend method to call some method dynamically. Say I want call some method in …

objective-c cocoa objective-c-runtime
Are selectors in Objective-C just another way to send a message to an object?

Are selectors in Objective-C just another way to send a message to an object? I really don't understand why or …

objective-c selector objective-c-runtime