1

私はまだ iOS の初心者で、通常のテキストと変数を組み合わせたアラート ビューの作成に少し手こずっています。initWithTitle 行で「式の結果が使用されていません」という警告が表示され、修正方法がわかりません。

name = @"foo";

//now create the alert
UIAlertView *myAlert = [[UIAlertView alloc]
                        initWithTitle: (@"Hello %@", name)
                        message: @"You're looking mighty fine today"
                        delegate: nil
                        cancelButtonTitle: @"I'm awesome"
                        otherButtonTitles: nil];

//show the alert
[myAlert show];

現在、警告が表示され、すべてがコンパイルされますが、アラートのタイトルは「hello foo」ではなく「foo」です。

括弧を削除すると、次の行で構文エラーが発生します。

4

1 に答える 1