There are many topics like this but haven't find any which could help me.
my .h file:
-(void) function;
my .m file:
-(void) function {
/*some basic switch statement for showing images in imageview*/
}
- (IBAction)do_the_function_button:(id)sender {
function();
}
Where is the mistake? I'm sure it's something very trivial.