I have a best practices/stylistic question. Let's say I have an IBAction method and I have no need for the sender parameter (I'm aware how to use the sender parameter if I do need it). Do folks recommend leaving the (id)sender in the method declaration for consistency, or exclude it for brevity? Functionally, there is no right answer here, just curious about what folks consider best practice for maintainability/peer review/etc. Thanks.
Option A:
-(IBAction)foo:(id)sender;
Option B:
-(IBAction)foo;