1
- (void)showMessageError {
alertMessage = [[UIAlertView alloc] initWithTitle:@"Impossible"
                                                  message:@"Here are the problems:\n%@,\n%@,\n%@",self.Error1,self.Error2,self.Error3
                                                 delegate:self
                                                 cancelButtonTitle:@"OK"
                                                 otherButtonTitles:nil];
[alertMessage show];
}

この AlertView を cancelButtonTitle だけで表示したいだけですが、delegate:self Expected':' の近くでエラーが発生します。

なんで ?

4

1 に答える 1

2
alertMessage = [[UIAlertView alloc] initWithTitle:@"Impossible"
                                              message:[NSString stringWithFormat:@"Here are the problems:\n%@,\n%@,\n%@",self.Error1,self.Error2,self.Error3]
                                             delegate:self
                                             cancelButtonTitle:@"OK"
                                             otherButtonTitles:nil];

これを試して

于 2012-11-08T06:30:26.500 に答える