I am creating an interface/protocol that will be used for iOS grid views. Im trying to encapsulate as much information within the class, leaving very little info to the user of the class and its subclasses. I'm stuck at what a callback method or a delegate should be. In C or C++ I would have required a function pointer to be passed as a parameter for the method that would be called on a touch up event. In Objective C (which Im fairly new at), I'm puzzled with blocks and selectors. From what I've seen the Apple way is to use selectors. So This class should require a method to be set as a selector for what will happen when a touch up event is detected. I do not want to do extensive subclassing, as this will limit reusability and enforce more coding to take place every time this interface is used. I am including limited code, of what I've done so far, using a selector, but I am open to suggestions on how the same could be done with a block instead and why it would be better. I have not tested this, I am currently designing it.
@protocol Grid <NSObject>
@required
/*! @brief Initializer for base class */
- (id) init:(UIView *)parent withSelector:(SEL)selector;
/*! @brief Draw the actual view */
- (void) draw:(CGRect) rect;
/*! @brief Reload the data */
- (void) reload;
@end
The title is misleading, and I have, since posting this question, got a better idea of how things work in Objective-C. This is about abstracting base classes, inheritance and polymorphism, rather than setting selectors as properties or delegates
