Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Freeze when there are multiple BlockActionSheets #51

Open
fractastical opened this issue Jun 21, 2013 · 1 comment
Open

Freeze when there are multiple BlockActionSheets #51

fractastical opened this issue Jun 21, 2013 · 1 comment

Comments

@fractastical
Copy link

I've noticed several times when the screen becomes non-responsive when there are multiple actionsheets presented in quick succession. Not sure about the root of this bug, but it requires app reboot.

@gclsoft
Copy link

gclsoft commented Jun 9, 2014

I've the same problem too, everytime. I alert it from a cell UITableViewCell.

   UITextField *textField;
    //textField.
    BlockTextPromptAlertView *alert = [BlockTextPromptAlertView promptWithTitle:strShow message:BET_SCORE_REAL textField:&textField block:^(BlockTextPromptAlertView *alert){
        [alert.textField resignFirstResponder];
        return YES;
    }];


    [alert setCancelButtonWithTitle:@"Cancel" block:nil];
    [alert addButtonWithTitle:@"OK" block:^{
        NSLog(@"Text: %@", textField.text);

    }];

    NSLog(@"id:%@ money:%@",[User shared].playId,[User shared].money);
    NSString* strMoney=[NSString stringWithFormat:@"You have %@ points, buy more",[User shared].money];
    [alert addButtonWithTitle:strMoney imageIdentifier:@"red" block:^{
        // [self showActionSheet:nil];
    }];


    [alert show];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants