UIAlertView 内に挿入したいテキスト フィールドに等しい文字列があります。
NSString *finalScore = [[NSString alloc] initWithFormat:[counter2 text]];
UIAlertView *myAlertView = [[UIAlertView alloc]
initWithTitle:finalScore
message:@"You scored X points"
delegate:self
cancelButtonTitle:nil
otherButtonTitles:@"OK", nil];
[myAlertView show];
[myAlertView release];
「X」を文字列「finalScore」のスコアに置き換えたい
メッセージセクションの下に引用符を付けずに文字列名を入力するだけですが、文字列と一緒にテキストも必要です。
たくさんありがとう、チェイス