Multiple UIActionSheets on the same delegate

后端 未结 3 494
梦如初夏
梦如初夏 2021-02-10 13:53

I\'m writing a puzzle game. When the user presses the check button, I see if the solution they entered is correct. Depending on the result, I present one of two action sheets fo

3条回答
  •  渐次进展
    2021-02-10 14:39

    Set a tag for each actionSheet, then use a switch statement in the UIActionSheet delegate.

    Assign a tag

    - (void)checkSolution
    {
        if (allCorrect) 
        {
            UIActionSheet *levelCompleteActionSheet = [[UIActionSheet alloc] initWithTitle:@"Congratulations! You Have Finished the Level!" delegate:self cancelButtonTitle:@"Review my work" destructiveButtonTitle:@"Choose next puzzle" otherButtonTitles:nil, nil];
    
            [levelCompleteActionSheet setTag: 0];
    
            [levelCompleteActionSheet showInView:self.view];
            [levelCompleteActionSheet release];
        }
        else
        {    
            UIActionSheet *showErrorsActionSheet = [[UIActionSheet alloc] initWithTitle:@"Sorry, thats not right. Show errors in red?" delegate:self cancelButtonTitle:@"No Thanks, I'll keep trying" destructiveButtonTitle:@"Yes please, I'm stuck!" otherButtonTitles:nil, nil];
    
            [showErrorsActionSheet setTag: 1];
    
            [showErrorsActionSheet showInView:self.view];
            [showErrorsActionSheet release];
        }
    }
    

    UIActionSheet Delegate

    - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex 
    {
        switch ( actionSheet.tag )
        {
            case 0: /* levelCompleteActionSheet */
            {
                switch ( buttonIndex )
                {
                    case 0: /* 1st button*/
                        break;
                    case 1: /* 2nd button */
                        break;
                }
            }
                break;
            case 1: /* showErrorsActionSheet */
                break;
        }
    }
    

    The same would apply anywhere else in this class as well, including levelCompleteActionSheet: and showErrorsActionSheet:. The only difference is, you would need to create an iVar for each actionSheet instead of creating them in checkSolution.

提交回复
热议问题