I don't think you guys need to change the tags. If you're used to it, fine, but I'm pretty sure you can do this w/o any problems:
Code:
//Two alert views named alertOne and alertTwo
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if(alertView == alertOne) {
//do custom code for first alert view
}
else if(alertView == alertTwo) {
//do custom code for second alert view
}
}
I'm pretty sure this would work. If I'm wrong, feel free to correct me. I'm learning just like many others on this forum are!