1

在我的客户项目中,我需要UIAlertView在按下按钮时创建一个。这部分并不难,并且已经用上述代码完成了:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    if (buttonIndex == 1) {

        self.currentCountButtonCount++;

    }if (buttonIndex == 2) {

        self.currentCountButtonCount--;

    }
}

- (IBAction)countClick:(id)sender {

    //self.alertMessage = [[NSString alloc]init];

    // tallies and keeps current count number

    if (!self.currentCountButtonCount)
        self.currentCountButtonCount = 0;

    NSString *alertMessage = [NSString stringWithFormat:@"%d", self.countButtonCount];

    self.countAlert = [[UIAlertView alloc]initWithTitle:@"Count" message:alertMessage delegate:self cancelButtonTitle:@"end" otherButtonTitles:@"+",@"-", nil];

    [self.countAlert show];
}

你会看到那里没有缺陷,但这不是我想要实现的。

我需要的是UIAlertView当用户按下 + 按钮时将消息更改为递增的字符串,UIAlertViews并在按下 - 按钮时显示减小的值。

我认为上面的代码会这样做,它只是在按下任何按钮时关闭警报。我需要它来保持警报,直到用户完成计数。

我将如何实现这一点?

我已经尝试过自定义UIAlertView,但它似乎真的只在图形方面有所帮助。

4

1 回答 1

0

您可以CustomAlertiew使用自定义UIView创建一个,然后delegates为此“CustomAlertiew”创建。

于 2013-07-13T05:00:44.217 回答