错误是:“UIAlertview 没有可见的@Interface 声明选择器'initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitle:'”
- (void) subtractTime;
{
seconds --;
timerLabel.text = [NSString stringWithFormat:@"Time: %i", seconds];
if(seconds == 0)
{
[timer invalidate];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Time is up !"
message: [NSString stringWithFormat: @"You Scored %i points", count]
delegate:self
cancelButtonTitle: @"Play Again?"
otherButtonTitle:nil];
}
}
@end