Is it possible to override a method in a subclass in such a way that when the superclass calls the method, those calls still go to the original method, but all other (external) calls to the method go to the overridden version?
Background: If I subclass a UITextField and override the getter for delegate, the built-in behavior of UITextField that relies on the delegate appears to be using the backing ivar to access the delegate (and not touching the overridden getter); however, if I try the same thing with UITextView, it seems that the internal behavior of UITextView that relies on the delegate uses the overridden getter to access the delegate.
UITextFieldinterally uses the ivar directly rather than the accessor method for itsdelegate, but it's not at all clear what that has to do with the question in your title and first paragraph. You want the subclass to use your overridden method for any access of the ivar. I'm not sure that's possible. – Josh Caswell Jan 25 at 3:11