Quote:
Originally Posted by Desdichado
I had this problem recently. I ended up using tags:
Code:
alert1.tag=1;
alert2.tag=2;
and then in the delegate method:
Code:
if (actionSheet.tag==1) {
//check buttonIndex value and do something
}
else if (actionSheet.tag==2) {
//check buttonIndex value and do something different
}
|
Tags seem like a bit of a bodge, is there a more correct way?