0
NSString stringWithFormatには本当に基本的な問題があります。ユーザーが入力し、alertView:Welcome usernameに表示する名前を使用したいと思います。stringWithFormatでエラーを見つけることができません
NSString *welcomeMessage = [NSString stringWithFormat:(@"Welcome %@", passedData)];
UIAlertView *alert = [[UIAlertView alloc] //show alert box with option to play or exit
initWithTitle: welcomeMessage
message:@"Once you press \"Play\" the timer will start. Good luck!"
delegate:self
cancelButtonTitle:@"I want out!"
otherButtonTitles:@"Play",nil];
[alert show];
passedDataは、入力されたユーザー名です。私は現時点でそれを持っている方法 - ユーザー名だけが警告ボックスのタイトルに表示され、「ようこそ」の部分では表示されません。私はここで本当に基本的な知識が欠けていると知っていますが、助けていただければ幸いです。
お役に立てば幸いです。 – garethdn
@garethdnよろしいですか;) – Novarg