The Objective-C runtime is a runtime support library provided with an implementation of the Objective-C language.
Is it possible to add properties to an Objective C object at runtime?
objective-c cocoa properties objective-c-runtimeI want to convert a string to a class name. Imagine that I have a string, which changes, containing a …
objective-c cocoa objective-c-runtimeam exposing swift API's in Objective-C and the Objective-C runtime. When i add "@objc" before the function throws an error "…
ios objective-c swift optional-parameters objective-c-runtimeThe Objective C Runtime Guide from Apple, states that you should never use objc_msgSend() in your own code, and …
objective-c cocoa objective-c-runtimeIs there a way to assign values to enums during runtime in objective c? I have several enums and want …
objective-c ios enums objective-c-runtimeI have a subclass of UIScrollView in which I need to internally respond to scrolling behaviour. However, the viewcontroller will …
ios objective-c objective-c-runtimeIf I have a class, how can I list all its instance variable names? eg: @interface MyClass : NSObject { int myInt; …
objective-c class introspection objective-c-runtimeI am wondering which of the two following methods is the correct or preferred one to retrieve the superclass of …
objective-c objective-c-runtimeBackground: I'm building an app for OS X with deployment target of 10.6. I have not converted my app to ARC …
compilation automatic-ref-counting cpu-architecture computer-architecture objective-c-runtimeI'm trying to get the properties from my class using obj-c runtime approach I found on the answers from here, …
objective-c objective-c-runtime