As far as I understand Objective C / iOS is very dynamic language, so is it as dynamic as Ruby ? Does it have the equivalent of method_missing ? I asked the same question for js Does Javascript have something like Ruby's method_missing feature? and was disappointed that js does not support it yet.
|
|
|
Objective-C is dynamic, although having been a Ruby programmer, I would say it is not quite as dynamic as Ruby. Objective-C does have an equivalent of method_missing. You'll want to override both
Don't use Please see the NSObject class documentation for further details: http://developer.apple.com/library/ios/#DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html |
|||||
|
|
I guess method_missing is a callback method that gets called when an object is missing a certain method. Well, you can use respondsToSelector method to check if an object can respond to a method. It's a method declared in NSObject protocol. So instead of getting method_missing called after realizing that some method is missing you can check it beforehands.
|
|||||||||
|
