I have a problem with opening a new view from my array buttons. I have a NSLog message in place that is outputting a int that all works fine.
How do I get this button to open a viewController with my tag as a parameter. This tag / parameter corresponds with a list of images that also seems to work fine.
How would I add this together?
Here is a code snippet from imageViewController.m:
-(void)thumbClickAction:(id)sender{
CustomImageView *club = (CustomImageView*)sender;
//debug line
NSLog(@"image tag : %d",club.tag);
I have no clue what I'm doing wrong I hope you can help me.