Tagged Questions

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.

learn more… | top users | synonyms

64
votes
8answers
6k views

Why doesn't Objective-C support private methods?

I've seen a number of strategies for declaring semi-private methods in Objective-C, but there does not seem to be a way to make a truly private method. I accept that. But, why is this so? Every ...
51
votes
1answer
1k views

How to implement an IMP function that returns a large struct type determined at run-time?

Background: CamelBones registers Perl classes with the Objective-C runtime. To do this, every Perl method is registered with the same IMP function; that function examines its self & _cmd arguments ...
23
votes
1answer
9k views

Objective-C class -> string like: [NSArray className] -> @“NSArray”

I am trying to get a string name of a class from the class object itself. // For instance [NSArray className]; // @"NSArray" I have found object_getClassName(id obj) but that requires an instance ...
18
votes
4answers
4k views

What is the underlying mechanism for ivar synthesis in the modern Objective C runtime

One of the features of the modern (64 bit OS X and iPhone OS) Objective C runtime is the ability for properties to dynamically synthesize ivars without explicitly declaring them in the class: ...
12
votes
3answers
3k views

Objective-C Reflection for generic NSCoding implementation

Is there any means of reflection in Objective-C that would allow you to write generic NSCoding implementations by inspecting the public properties of an object and generating generic implementations ...
11
votes
4answers
4k views

What exactly is super in Objective-C?

As far as I know, it's a pointer to the superclass. It's hard-wired with the superclass, and not dynamically figured out at runtime. Would like to know it more in detail... Anyone?
11
votes
2answers
2k views

Creating an IMP from an Objective-C block

The IMP type in Objective-C represents a function pointer, as far I as understand. Is there any way to make an IMP from a block pointer? Thanks for your ideas.
9
votes
2answers
1k views

How do I list all instance variables of a class in Objective-C?

If I have a class, how can I list all its instance variable names? eg: @interface MyClass : NSObject { int myInt; NSString* myString; NSMutableArray* myArray; } I would like to get ...
9
votes
5answers
1k views

Using instance variables with Modern Runtime

I have several years of experience in Obj-c and Cocoa, but am just now getting back into it and the advances of Obj-C 2.0 etc. I'm trying to get my head around the modern runtime and declaring ...
7
votes
1answer
86 views

Why can some methods (-retainWeakReference, -allowsWeakReference, +load, +initialize) on class NSObject not be added to other classes at runtime?

It is straightforward at runtime to create a copy MyNSObject of the Class NSObject: First, create a new class pair. Class MyNSObject = objc_allocateClassPair(nil, "MyNSObject", 0); Second read the ...
6
votes
3answers
210 views

Why do Objective-C objects have to be dynamically allocated?

Why do Objective-c objects have to be dynamically allocated? Why do I have to make it a pointer to an object, unlike in C++ I can create them on stack? Thanks.
6
votes
1answer
351 views

How does the Objective-C runtime instantiate the root metaclass and other class descriptions?

I'm trying to implement a basic object-oriented ANSI C runtime and using Objective-C as a guide. They're seems to be three parts. A Class Description, Class Interface, and Class Implementation. In ...
5
votes
2answers
59 views

How to interpret objective-c type specifier (e.g. returned by method_copyReturnType())?

Given I have a type specifier as returned by method_copyReturnType(). In the GNU runtime delivered with the GCC there are various methods to work with such a type specifier like objc_sizeof_type(), ...
5
votes
2answers
91 views

Cocoa/Objective-C Plugins Collisions

My application has a plugin system that allows my users to write their own plugins that get loaded at runtime. Usually this is fine but in some cases two plugins use the same libraries that will cause ...
5
votes
1answer
79 views

Get the object which called a method

If I have a call from within a random class like this: @implementation SomeClass - (void) classMethodFoo { int a = [SomeSingleton sharedInstance].aValue; } @end Inside SomeSingleton ...
5
votes
1answer
200 views

What determines the process by which unimplemented methods are resolved?

As I understand it, an unimplemented method gets resolved in the following way: resolveInstanceMethod: / resolveClassMethod: gets a chance to implement the method forwardingTargetForSelector: gets a ...
5
votes
4answers
636 views

Objective-C property assignment returns the assigned value?

Say I have the following: @interface MyClass : NSObject { NSString* _foobar; } @property (nonatomic, retain) NSString* foobar; @end @implementation MyClass @dynamic foobar; - (void) ...
5
votes
2answers
215 views

What does class_getClassVariable() do?

If instance variables belong to an instance of a class, class variables would belong to an instance of a metaclass, I should think. But my experience with the Objective-C metaclass tells me that this ...
4
votes
1answer
144 views

Objective-C Runtime: Swizzled method name?

In an attempt to Detect backspace in UITextField, I've tried subclassing UITextField and overriding -[UIKeyInput deleteBackward], but it never gets called. So, I'm suspecting UITextField swizzles ...
4
votes
1answer
60 views

Objective-C: Associative Object Behaviors

Does OBJC_ASSOCIATION_RETAIN_NONATOMIC of the Associative Object Behaviors in the Objective-C Runtime Reference, call release on the old value referenced by the associated object before it assigns ...
4
votes
1answer
76 views

Can non-alphanumeric characters be used as selectors?

The following code compiles and runs fine (note the sel_registerName("+")): #import <Foundation/Foundation.h> #import <objc/runtime.h> #import <objc/message.h> @interface Integer : ...
4
votes
3answers
399 views

What's required to implement root class of Objective-C?

I tried this code: // main.m #import <stdio.h> @interface Test + (void)test; @end @implementation Test + (void)test { printf("test"); } @end int main() { [Test test]; return 0; ...
4
votes
2answers
436 views

GNU Objective-C runtime trickery

Can I, in the GNU Objective-C runtime, attach semi-arbitrary pieces of data to instance variables? Challenge: I'm currently working on a kind of Cocoa workalike for Linux, as a sort of pet project. ...
4
votes
2answers
2k views

object_getInstanceVariable works for float, int, bool, but not for double?

I've got object_getInstanceVariable to work as here however it seems to only work for floats, bools and ints not doubles. I do suspect I'm doing something wrong but I've been going in circles with ...
3
votes
2answers
126 views

Objective-C associated objects leaking under ARC

I have encountered with a strange objc_setAssociatedObject behavior under ARC. Consider the following code: static char ASSOC_KEY; @interface DeallocTester : NSObject @end @implementation ...
3
votes
3answers
233 views

How do I return a struct value from a runtime-defined class method under ARC?

I have a class method returning a CGSize and I'd like to call it via the Objective-C runtime functions because I'm given the class and method names as string values. I'm compiling with ARC flags in ...
3
votes
3answers
73 views

Type cast from Method to SEL

I’m using the Objective-C runtime library, function class_copyMethodList(), to get a list of all the methods in my class. How do I then convert those type Method objects into usable type SEL objects?
3
votes
2answers
176 views

Using Objective-C Metadata to Generate Class Dependency Graph

This guy came up with a pretty neat tool to generate a class dependency graph - however, it relies on parsing your source code and looking for #import directives. ...
3
votes
2answers
132 views

When using Objection, implementation of custom protocol crashes with unrecognized selector

I am defining a custom protocol: @protocol NGSAuthProvider <NSObject> - (BOOL)isReady; - (BOOL)isSessionValid; - (void)login; - (void)logout; - (NSString *)accessToken; - ...
3
votes
1answer
72 views

Catching an undefined message in ObjC and forward it to a method with a different signature

I'm writing a logger class (who doesn't ?) with a method - (void) logWithTag:(NSString *)aTag andMessage:(NSString *)aMsg; I wish to be able to forward undefined messages to this method. For ...
3
votes
1answer
124 views

adding methods dynamically

I am trying this method found in Obj-c runtime reference BOOL class_addMethod(Class cls, SEL name, IMP imp, const char *types) I want to add a new method like: - [AClass drawWithFrame:(NSRect)rect ...
3
votes
2answers
102 views

How to get runtime Block type metadata in Objective-c?

I'm writing a class where you register an object and a property to observe. When the property gets set to something non-nil, a registered callback selector is called (like target-action). The selector ...
3
votes
3answers
456 views

Can class_addMethod in Objective-C work only on a specific instance?

I am trying to write some dynamic code where a user can try calling a method from a specific instance of a class and have it be resolved at runtime. The implementation to retrieve the information ...
3
votes
3answers
534 views

What is objc_setAssociatedObject() and in what cases should it be used?

In a project I have taken on, the original author has opted to use objc_setAssociatedObject() and I'm not 100% clear what it does or why they decided to use it. I decided to look it up and, ...
3
votes
2answers
791 views

Is there any problem using self.property = nil in dealloc?

I know declared property generates accessor method which is someway just syntax sugar. I found quite a lot people use self.property = nil in their dealloc method. 1) In Apple's Memory Management ...
3
votes
2answers
312 views

Xcode — finding dead methods in a project

I am curious if there are any tools that provide partial solutions for this. It is a tricky problem because of performSelector . . . but a tool ought to at least be able to come up with candidates, ...
3
votes
5answers
1k views

Interpret Objective C scripts at runtime on iPhone?

Is there anyway to load an objective c script at runtime, and run it against the classes/methods/objects/functions in the current iPhone app? MAJOR NOTE: The major reason I'd like to do this is to ...
3
votes
2answers
516 views

Asterisk usage in Objective-C

I had a question regarding the use of asterisks in Objective-C. Just to be clear: I understand what pointers are and everything in procedural C. I was wondering two things though: 1) Why are all ...
3
votes
2answers
625 views

Obtain list of class methods for an arbitrary class

How can I get the list of class methods for a particular Class? I've tried using the class_copyMethodList function declared in <objc/runtime.h>, but that's only giving me instance methods. ...
3
votes
3answers
382 views

How can I add a C-based language to GCC

If I wanted to modify or add my own extensions to C, and add them to the GCC C compiler, what would I need to do? I do not want to propose changes to the language, I want to know how the C compiler ...
2
votes
1answer
38 views

Using objc_getClassList under arc

Has anybody managed to use objc_getClassList under arc, short of turning arc off for the file in question? The fundamental problem is that one of the parameters is a C array of Class pointers.
2
votes
1answer
71 views

Get all existing pointers to an object

Is it possible to get a list of pointer to a pointers to an objective c object. something like id **pointers(id object, int *out_count) Pretty crazy, huh? =)
2
votes
1answer
42 views

How can one obtain the sizeof a type for which one has an encoding?

Given an objective-c type type, one can obtain the encoding encoding and size size of the type easily: const char *encoding = @encode(type); size_t size = sizeof(type); Put a little differently, we ...
2
votes
1answer
143 views

Check if Protocol Method is Defined

UIScrollViewDelegate has a new awesome method: // called on finger up if the user dragged. velocity is in points/second. targetContentOffset may be changed to adjust where the scroll view comes to ...
2
votes
2answers
178 views

How can I add properties to an object at runtime?

Is it possible to add properties to an Objective C object at runtime?
2
votes
1answer
52 views

PyObjC and method_exchangeImplementations: crash. correct usage?

I'm using PyObjC. PyObjC doesn't provide an interface to method_exchangeImplementations so I was trying to use the function via ctypes. I was trying to overwrite windowShouldClose: from some window ...
2
votes
2answers
120 views

Cocoa: add another dock icon at runtime

Is it possible to add another icon to the dock at runtime without using [NSWorkspace launchApplication:]? How? Before you say 'no': I am willing to use stuff like fork() etc. I actually tried a ...
2
votes
1answer
43 views

PyObjC: how to delete existing Objective-C class

I created a ObjC class earlier. How can I delete it again? Because at some later point, I want to recreate it by another version. Right now, if I just redeclare it, I get the exception X is ...
2
votes
2answers
136 views

Objective-C pattern for class instance variables?

What would be a nice pattern in Objective-C for class variables that can be "overridden" by subclasses? Regular Class variables are usually simulated in Objective-C using a file-local static ...
2
votes
0answers
155 views

Example of how Objective-C's @try-@catch implementation is executed at runtime?

In Objective-C's low-level runtime headers (/usr/include/objc), there is an objc-exceptions.h file. It would seem this is how @try/@catch is implemented by the ObjC compiler. I am trying to invoke ...

1 2 3