One of my views uses 3 action sheets that come from when various buttons are clicked. Since I only have one - (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex
method, what is the best way to know which action sheet I am dealing with? Choosing the first button on any of my actionSheets would be buttonIndex 0. So I need to know how to know which actionSheet call that is coming from.
Ideas?