[Solved] Exception in button tag


The reason you are getting an exception is because your tag is greater then the blogids count.

Add the buttons to the array and then it will not crash.

For example:

blogids = [[NSMutableArray alloc]init];
[blogids addObject:oneOfYourButtons];

Also if you only want to see the tags number use this:

NSLog(@"The tag clicked:%d",tag);

instead of:

NSLog(@"The tag clicked:%@",[blogids objectAtIndex:tag]);

solved Exception in button tag