1

コードをコンパイルしようとしているとき。このコード:

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"You Lost!"
    message:[NSString stringWithFormat:@"You were hit! Try again!"]
    delegate:nil
    cancelButttonTitle:@"Dismiss" otherButtonTitles:nil];
[alert show];

このエラーが発生しています:
No Visible @interface for 'UIAlertView' declares the sector

4

1 に答える 1

1

http://www.raywenderlich.com/forums/viewtopic.php?t=3312&p=20213

cancelButttonTitleに余分なtがあります。cancelButtonTitleである必要があります。

于 2012-07-26T13:08:43.207 に答える