- (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':' の近くでエラーが発生します。
なんで ?