-1

エラーメッセージが表示されます:expected ':'おそらくinitWithTitle:@"You downloaded %i boards", iboard以下のフレーズが原因です。修正を手伝ってもらえますか?

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"You downloaded %i boards", iboard message:@"Press Ok to continue" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
            [alert show];
4

2 に答える 2

2

交換

initWithTitle:@"You downloaded %i boards", iboard 

initWithTitle:[NSString stringWithFormat:@"You downloaded %i boards", iboard]
于 2013-03-03T16:02:54.833 に答える
2

コードをめちゃくちゃにしました。

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"You downloaded %i boards", iboard message:@"Press Ok to continue" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];

そのはず :

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[NSString stringWithFormat:@"You downloaded %i boards", iboard]
                                                message:@"Press Ok to continue" 
                                               delegate:self 
                                      cancelButtonTitle:@"Ok" 
                                      otherButtonTitles:nil];
于 2013-03-03T16:04:13.923 に答える