0
votes
2answers
30 views
Objective-c Runtime Interface Documentation
Are the runtime interfaces(such as __objc_exec_class()) for Objective-C programs specified/documented anywhere, or they are (compiler-)implementation defined?
The closest thing to a reference I have …
5
votes
1answer
72 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.
UPDATE: Thanks, @bbum, for your great …
0
votes
1answer
30 views
Printing arguments sent to forwardInvocation: subclass of NSProxy
I want to intercept messages sent to a proxy object by just printing the selector and arguments. Even if the proxy does not implement them and does not have a target object. Please help. I have looked …
0
votes
2answers
69 views
Discovering the user’s first and last names?
I am trying to programmatically discover the first and last names of the iPhone user. Is this possible at all? Calling this ...
getpwuid( getuid() )->pw_gecos == "Mobile User"
..alas. Iterating …
3
votes
2answers
172 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. …
5
votes
4answers
236 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 …
4
votes
2answers
184 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 …
4
votes
2answers
213 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 …
1
vote
1answer
103 views
Handling the return value of object_getIvar(id object, Ivar ivar)
1) object_getIvar(id object, Ivar ivar) returns an 'id' if the Ivar is an object eg. if the variabe is an NSString, presumably the id = NSString which contains the value. Is that correct? Or what do I …
7
votes
3answers
621 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 …
1
vote
4answers
158 views
How do I get the int value from object_getIvar(self, myIntVar) as it returns a pointer
if the variable in object_getIvar is a basic data type (eg. float, int, bool) how do I get the value as the function returns a pointer (id) according to the documentation. I've tried casting to an …
0
votes
2answers
161 views
IBOutlet like constructs in the Objective-C runtime
My understanding of IBOutlets is that they act as a marker to ivars and properties in Objective-C classes. Is there anything in the Objective-C runtime that would allow one to query whether an ivar or …
0
votes
3answers
26 views
1
vote
2answers
822 views
Compiler warning “not found in protocol(s)” when using [[[UIApplication sharedApplication] delegate] myClass Property]?
I have myClass instantiated by my appDelegate, I have another class, newClass instantiated by myClass. From the newClass instance, I want to access a property in the myClass instance that created it. …
0
votes
2answers
87 views
NSObjCMessageLoggingEnabled with iPhone 3.0
I'm debugging a program that was written for iPhone OS 2.2.1 and has to be slightly rewritten for 3.0. Having a list of all the Objective-C message calls that are being made, including …
