Override methods in an Objective C Class
- by Thomas Joulin
Hi,
Why can't I do this, and how could I perform the same behavior in Objective C ?
@interface Test
{
}
- (void)test:(Foo *)fooBar;
- (void)test:(Bar *)fooBar;
@end
Thanks in advance !