UIAlert消息增量

时间:2013-07-12 03:36:15

标签: objective-c uialertview

这似乎很容易,但我无法绕过它。

我在这里有UIAlertView init:

- (IBAction)countClick:(id)sender {

    NSInteger *num = 1;
    self.alertMessage = [NSString stringWithFormat:@"%d",num];
    NSLog(@"%@",self.alertMessage);
    self.countAlert = [[UIAlertView alloc]initWithTitle:@"Count" message:self.alertMessage delegate:self cancelButtonTitle:@"end" otherButtonTitles:@"+",@"-", nil];
    [self.countAlert show];
}

当显示此视图时,它有三个按钮标题和消息。 我的问题是当他们点击+按钮或 - 按钮我需要消息减少或添加然后反映它。

我似乎无法让它工作,非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

UIAlertView无法做到这一点。您必须创建自己的自定义警报才能处理此类功能。