vote up 6 vote down star
3

I am fairly new to Objective-C, but experienced in Java. Is there the equivalent concept of Objective-C "delegation" in Java, so that I may understand this notion better? Would there be a way to emulate the delegation concept in Java?

flag

63% accept rate

3 Answers

vote up 3 vote down

java.lang.reflect.Proxy is the closest equivalent in java. It's tedious to use though.

link|flag
1  
java.lang.reflect.Proxy is for creating Java proxies/wrappers/delgates at runtime. Is this true for Objective-C delegates? They are a runtime and not compile time concept? – Julien Chastang Jan 14 at 22:00
vote up 4 vote down

Delegation is just a way to avoid having to subclass an object like a table view to implement application specific behavior, and instead put that responsibility on the controller. When you create the table view you assign it a controller object, which implements a defined set of methods (some may be required, others may be optional). When the table view needs data or has to make a decision on how to display itself, it asks the delegate if it implements the appropriate method, and calls it if it does to make its decision.

link|flag
Thanks. In your example, you are providing a delegate for the controller. That delegate wraps the controller which the table view will interact with. Correct? In Java you would have the delegate implement the same interface as the regular controller. Is there this notion in Objective-C? – Julien Chastang Jan 14 at 21:38
vote up 1 vote down

Delegation is an object oriented design pattern. An example in Java is on Wikipedia: Delegation Pattern

link|flag
Thanks for the link. Is it really as simple as wrapping one object with another -- and exposing those same methods, but with (slightly) different behavior? My (very limited) understanding of delegation is that it is much more of a first class concept in Objective-C. – Julien Chastang Jan 14 at 20:54
It is not first class. It is just a common design pattern in Cocoa. There is nothing special about it. – robottobor Jan 14 at 20:59
It's a touch easier to do in Objective C, as it's easier to detect if an arbitrary object has a method you want to call (instead of method it's really called a "selector") which enables easy use of optional methods by a contained object (the wrapped objects are generally termed "delegates"). – Kendall Helmstetter Gelner Jan 18 at 4:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.