Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
625 views

What does __forwarding__ in the stack trace mean?

(gdb) bt #0 0x302ac924 in ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ () #1 0x92077e3b in objc_exception_throw () #2 0x302d6ffb in -[NSObject doesNotRecognizeSelector:] () #3 0x3026e056 in ...
3
votes
1answer
132 views

Creating an Objective-C object that wraps another object with the same interface - KVC/KVO issues

I need to create an object in one class hierarchy that wraps an object from a different one. They both have very similar interfaces, and I'd like to automatically have my wrapper forward messages it ...
2
votes
3answers
72 views

How can I just “swallow” the “unrecognized selector error” by message-forwarding?

I'm just studying the "message-forwarding" of Objective-C. I write a test program to verify if I can "swallow" an unrecognized selector at run-time. So I did this: - (void) forwardInvocation: ...
1
vote
1answer
171 views

Passing setters/getters of an instance variable up to a class

I'm working on creating a UIView subclass (which I'm calling MarqueeLabel) that animates a subview UILabel ivar in a marquee fashion when the UILabel text is too long for the containing view. I was ...
0
votes
0answers
27 views

iPad UISplitViewController doesn't forward the -prepareForSegue:sender method

The title says it all; I have a UISplitViewController but my delegate class doesn't ever get the -prepareForSegue:sender message. I've confirmed this is the case because I subclassed ...
0
votes
3answers
107 views

iOS — use macros to forward a bunch of messages?

ForwardInvocation does exist, but it is slow and has the annoying problem of compiler warnings. So that got me to thinking -- is there a way to use macroes to quickly implement a bunch of getter ...
0
votes
1answer
82 views

Forwarding Class Messages

I know that I can forward messages to instances of a class using -forwardInvocation:. Can I do the same for messages sent to a class object (as in +forwardInvocation:)?
-3
votes
2answers
481 views

Message Forwarding in Objective C

Can anyone give a brief explanation of how to use message forwarding? Links Apple documentation: Apple documentation tends to be good as a reference, but lengthy enough to not be the best as an ...