hi, i have a dilemma. I have a UIView that is userInteractionEnabled and recieves events from
Code:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
however, i also have a class that is a Mediator(puremvc, if you know it) that has been assigned this view as its viewComponent. I would like this mediator to know about the touches to the uiview. What is the best way to pass the NSSet and the UIEvent? currently i made a custom protocol of the UIView and had the Mediator conform...but then i started thinking about NSNotifications, etc...any thoughts on this?