在我的客户项目中,我需要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
,但它似乎真的只在图形方面有所帮助。