1

这看起来很容易,但我无法绕过它。

我在这里有 UIAlertView 初始化:

- (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];
}

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

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

4

1 回答 1

0

这是不可能的UIAlertView。您必须创建自己的自定义警报来处理此类功能。

于 2013-07-12T05:45:49.447 回答