0

在我制作的游戏结束时,我想显示分数,但我无法让程序这样做。我有一个显示消息的功能。我如何在下面的行中获得“ _ ”以显示最终得分是多少?

[self displayMessage:@"Final Score was: ____. Play again?"];

- 这是它调用的函数

-(void) displayMessage: (NSString*) msg

{

    if (alert) return;
    [self stop];
    alert=[[UIAlertView alloc] initWithTitle:@"Game" message:msg delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [alert show];
    [alert release];
}
4

1 回答 1

4
[self displayMessage:[NSString stringWithFormat:@"Final Score was: %i. Play again?", finalScore]];

wherefinalScore是存储最终分数的变量。

于 2013-06-08T18:34:51.470 回答