这看起来很容易,但我无法绕过它。
我在这里有 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];
}
显示此视图时,它具有三个按钮,一个标题和消息。我的问题是当他们单击 + 按钮或 - 按钮时,我需要消息来减少或添加然后反映它。
我似乎无法让它工作,非常感谢任何帮助!