The Objective-C runtime is a runtime support library provided with an implementation of the Objective-C language. Its API allows dynamically creating and configuring classes at runtime, as well as introspecting existing classes, methods, properties, and method implementations.
0
votes
1answer
15 views
Best 3rd-party Library for iOS Parallax Effect?
I'm currently using APParallaxHeader, but unfortunately it has a section header bug (gets left behind on upward scroll), and doesn't work correctly with landscape or ipad resizing. There are so many ...
1
vote
1answer
29 views
Why do class_respondsToSelector and respondsToSelector behave different when sent to Class?
I have spent quite some time trying to figure out how class_respondsToSelector and respondsToSelector can give different results. Consider the following class:
@interface Dummy : NSObject
- ...
0
votes
2answers
43 views
Using objc_setAssociatedObject with weak references
I know that OBJC_ASSOCIATION_ASSIGN exists, but does it zero the reference if the target object is dealloced? Or is it like the old days where that reference needs to get nil-ed or we risk a bad ...
1
vote
1answer
36 views
Is there a way to dynamically allocate or assign values to ivars of a class at runtime in Cocoa / Cocoa Touch?
I'm sure we can dynamically determine iVars of a class at run time. Is there any way to allocate the determined iVars during run time?
TIA..
1
vote
2answers
40 views
Way to get information on whether or not a property is set readonly in objective-c
I have got some properties in objective-c that are declared readonly such as:
@property (nonatomic, readonly) NSString* aProperty;
And I want to get information on the properties readability to ...
0
votes
1answer
60 views
Override method using runtime library
I need to override - (void)viewWillAppear:(BOOL)animatedfor all ViewControllers adding NSLog(@"blabla") in this method. I.e. after every call of viewWillAppear invokes implemented early realization of ...
2
votes
1answer
80 views
GCD objects as Objective-C objects
Grand Central Dispatch objects are said to behave like Objective-C objects when compiled with an Objective-C compiler. But that's a little unclear for me.
Objective-C objects are, in fact, structures ...
0
votes
1answer
56 views
Obj-C introspection: How can a method reference arguments it's called with
This is an intentional "fork" of the question:
Obj-C introspection: How can a method reference its own selector?
I need to do the exact same thing as the OP, but whereas he didn't need to pass any ...
5
votes
2answers
193 views
How can I create a block that 'wraps' a target/selector pair?
I love blocks, and they are very cool.
However, I find that blocks can clutter up my code and make it harder to read without folding all of them up inside Xcode (which I don't like doing).
I like ...
5
votes
1answer
45 views
what are class_setIvarLayout and class_getIvarLayout?
I am trying to dynamic create objc class at runtime and I need to add some Ivar to the created class. I found class_addIvar which should do what I want, but I also found these functions:
...
1
vote
1answer
138 views
Method Swizzling isEqualToString
I'm running into some odd behavior when trying to Method Swizzle isEqualToString: on the NSString class. Here is the code in question:
#import <Foundation/Foundation.h>
#import ...
0
votes
0answers
52 views
What Objective-C Runtime can do? [closed]
I read the official document about Runtime Objective-C Runtime Programming Guide
And as I read, it can message forwarding and dynamic Method.
And as I known, it can set property use ...
2
votes
2answers
86 views
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 for storing and retrieving the object at runtime.
The typical ...
2
votes
2answers
122 views
Any gotchas with objc_setAssociatedObject and objc_getAssociatedObject?
I’m looking into ways to add a property (an integer in this case) to all UIView instances, whether they are subclassed or not. Is using objc_setAssociatedObject() and objc_getAssociatedObject() within ...
2
votes
2answers
105 views
respondsToSelector and class_getInstanceMethod
Internally, does respondsToSelector do more than finding out if class_getInstanceMethod return non-nil?
Is respondsToSelector essentially a wrapper of class_getInstanceMethod? Like so:
- ...
6
votes
1answer
76 views
Find out if an object is a class object rather than an instance of a class
Using the Objective-C runtime library, how do we find out if an object is a class object rather than an instance of a class?
6
votes
1answer
114 views
Using class_getInstanceMethod - where is the method implemented in the class hierarchy?
Is it possible to find where in a class hierarchy the method retrieved by class_getInstanceMethod is coming from? For example, say Class A implements myMethod. Now say i've subclassed Class A in Class ...
3
votes
1answer
96 views
object_getClass(obj) and [obj class] give different results
I get two different object instances when calling object_getClass(obj) and [obj class]. Any idea why?
Class cls = object_getClass(obj);
Class cls2 = [obj class];
(lldb) po cls
$0 = 0x0003ca00 Test
...
2
votes
1answer
68 views
How can a copy of an instance of an object be made for a class which does not adopt NSCopying?
In certain contexts (for example, when hooking into internals for testing) it would be convenient to be able to create copies of instances of classes which do not adopt NSCopying (do not implement ...
2
votes
2answers
72 views
Objective-C registering a class Runtime Reference
So I have a class MyClass. It's name is part of char * myclasses[]. I'd like to allocate it using the objc runtime api.
1) Is this the best way to do this? My goal is to not allocate 10 or 15 ...
1
vote
2answers
51 views
Know when an object is created
Is there any way to use the ObjC runtime library, or Cocoa, to be notified when an object is created, for example, after it returns from the init method?
I want to achieve this without modifying the ...
2
votes
1answer
96 views
Obj-c Xcode static analysis produces a “Dereference of null pointer” on pointer assignment
I am trying to implement a tricky thing: all my model classes have an automatic NSCoding implementation of their properties. This let me add and remove properties to my classes and do not worry about ...
3
votes
2answers
154 views
Accessing static variables that are simulating class variables from unit tests
Is there an Objective-C runtime library function (unlikely) or set of functions capable of inspecting static (quasi-class level) variables in Objective-C? I know I can utilize a class accessor method ...
6
votes
3answers
143 views
How to allocate a new object without Foundation?
I want to construct a simple Objective C program without Foundation. I tried:
#include <stdio.h>
@interface Foo{
char * bar;
}
-(void)hello;
@end
@implementation Foo
-(void)hello {
...
2
votes
2answers
87 views
What is an alt handler, talking about the Objective-C runtime system exception handling?
Looking at the Objective-C runtime system source code, especially at the objc-exception.mm file, I found the expression "alt handler" and functions that deal with alt handlers. I have no idea what it ...
5
votes
2answers
159 views
Is NSObject class a part of the Objective-C runtime library today (instead of being a Foundation component)?
Looking at the Mac OS X 10.8's version of the Objective-C runtime library source code, I noticed that it's got a NSObject.mm file. As its name suggests, it's got the NSObject class implementation, as ...
0
votes
0answers
54 views
obtaining a property name at Run time using Objective C
with MBaas services getting really affordable, and easy to use, I was wondering if anyone could give me an advice on the following design choice ?
Context: Send the content of an NSDictionary for ...
7
votes
2answers
157 views
Objective-C: What is a lazy class?
Looking at the Objective-C runtime library source code, particularly at objc-runtime-new.mm, I saw some functions and even comments which referred to lazy and non-lazy classes. It seems that classes ...
3
votes
2answers
119 views
Understanding Objective-C runtime
This is an excerpt from Objective-C runtime programming guide:
When a new object is created, memory for it is allocated, and its instance variables are initialized. First among the object’s ...
0
votes
1answer
45 views
The ivar layout string format
A class' ivar layout is defined as a class_ro_t's struct uint8_t array field (Take a look at http://opensource.apple.com/source/objc4/objc4-532.2/runtime/objc-runtime-new.h). So, how can it be ...
3
votes
2answers
81 views
How does forwardInvocation: get called?
Looking only at the Objective-C runtime library, when a message is sent to an object that doesn't respond to it, the runtime system gives the receiver another chance to handle the message. So, the ...
4
votes
2answers
113 views
Under ARC, is it legal/safe to assign to an object-type ivar using runtime methods?
Based on the technique described here I'm setting ivars in object instances using the ivar_getOffset() method.
Now I have the case where the ivar is a NSString*:
NSString* _name;
UPDATE:
I was on ...
2
votes
2answers
89 views
`objc_autoreleasePoolPush()` and `objc_autoreleasePoolPop()` functions and `@autoreleasepool` blocks
I read somewhere that when we use @autoreleasepool { } blocks with ARC enabled, the compiler generates code to get the objc_autoreleasePoolPush() and objc_autoreleasePoolPop() functions called at the ...
1
vote
2answers
172 views
Performance of object_setClass() instead of assigning isa pointer
I noticed with with the latest update to XCode (4.6), I was given a warning about a couple of lines in JSONKit.m. Specifically, lines that set the class of an object:
dictionary->isa = ...
4
votes
1answer
122 views
How is retain count implemented in NSObject?
My question is how the current versions of Foundation (or of the Objective-C runtime library, since this seems to be there) implement retain count for NSObject derived objects? As I could see at ...
1
vote
1answer
149 views
How can the Objective-C runtime know whether a weakly referenced object is still alive?
With the advent of ARC, some new functions were made available to allow developers to play around with weakly referenced objects. id objc_loadWeak(id *location) is one of them. This function receives ...
1
vote
2answers
186 views
objc_msgSend() with C callback function as argument for code block?
So I'm trying to call an Objective-C method which has a callback code block as an argument.
The Objective-C method (implementation cut for purpose of post)
- ...
1
vote
1answer
140 views
Why does Objective-C runtime library use C++ ABI for exception handling? [closed]
I saw at http://opensource.apple.com/source/objc4/objc4-532.2/runtime/objc-exception.mm that Apple's Objective-C runtime uses some C++ ABI functions for exception handling, like __cxa_throw, ...
2
votes
2answers
90 views
Strange “selector mangling” in Objective-C method with Boolean arguments
I need to recover method names dynamically, via reflection calls at runtime. But get strange results for some.
My TestClass contains a method like:
- (void)testMethod6_NSRect:(NSRect)a1 int:(int)a2 ...
0
votes
1answer
195 views
Using objc_msgSendSuper to invoke a class method
I was going through and replacing @synthesized(self) locks w/ this method
void _ThreadsafeInit(Class theClassToInit, void *volatile *theVariableItLivesIn, void(^InitBlock)(void))
{
//this is what ...
0
votes
1answer
123 views
Does IMP imp = imp_implementationWithBlock((void*) objc_unretainedPointer(^(id me, BOOL selected)
The following provides a convenient way to add methods to a class at runtime:
imp_implementationWithBlock((void*) objc_unretainedPointer(^(id me, BOOL selected)
The method can then be added using ...
0
votes
2answers
27 views
description of message that triggered a method invocation
Does the objective-c runtime allow getting a description of the message that triggered a method invocation - from within that method itself?
For example, if I have a method called: ...
0
votes
2answers
155 views
Objective-C code analysis
I want to write a tool that does code-completion for objective-c class-names, selector-names and property names, as the software is being developed. (ie something that can run periodically and build a ...
1
vote
2answers
107 views
Macro to return a unique string at compile-time
Is there a Macro that can return a unique-string at compile-time, so that it could be used as the name of an objective-c class?
I'm thinking of something like:
#define my_macro(params) \
...
6
votes
2answers
155 views
Different behavior on iPhone Emulator and Real Device about Message Forwarding
I want to use Message Forwarding to let any unimplemented getter method return 0, instead of throw a unrecognized selector exception. Like
MyClass *r = [[MyClass alloc] init];
NSNumber *n = (NSNumber ...
1
vote
1answer
103 views
Is there a way to get the parameter's class type from a Method struct?
There is a method like this.
- (void)method: (CustomClass)param;
CustomClass inherits from NSObject.
I have a variable m below, which is the Method struct for that method.
I invoked ...
3
votes
1answer
124 views
How does objective-c handle method resolution at run-time?
I've read here recently that an objective-c object is stored on the heap as a struct. The struct contains the objects iVars, inherited iVars, and the isa pointer.
I'm trying to figure out when I ...
1
vote
1answer
120 views
How does the NSBundle's -load method register classes and other runtime resources with the Objective-C runtime?
Foundation's NSBundles are the best way to load dynamic code in Objective-C. The -load method dynamically loads the bundle's executable code into a running program.
But, which Objective-C runtime ...
0
votes
1answer
104 views
Is it possible to define a C function at runtime? [duplicate]
Possible Duplicate:
Dynamically creating functions in c
Here is an example of what I'd like to do:
void attribute((constructor)) someFunction() {
// Would be nice to define C function ...
1
vote
1answer
153 views
Is there an enum that holds the runtime's type encoding characters?
Objective-C uses single-letter type encoding for primitives; for example, 'c' is char, 'i' is int. These are documented in the Obj-C Runtime Reference.
Is there an existing enum that models these?

