同时有两个UIActionSheet时,actionSheet:方法如何判断当前选择的是哪个?

在创建不同的UIActionSheet时,分别设置其标志。

yourSheet1.tag = 1;

yourSheet2.tag = 2;


然后在方法里比对标志:
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
   if(actionSheet.tag==1)
    {
      ......
    }


    if(actionSheet.tag==2)
    {
       .......
    }
}

你可能感兴趣的:(同时有两个UIActionSheet时,actionSheet:方法如何判断当前选择的是哪个?)