Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はIOSアプリを構築しています。ユーザーにテキスト フィールドから 2 つのオプションを入力してもらいたい。オプションの 1 つが後でラベルにランダムに表示されます。テキスト フィールドは、後で呼び出すことができる NSMutableArray に情報を記録する必要があると考えています。情報はラベルにランダムに表示されると消えてしまうため、一時的に保存するだけで済みます。
テキスト フィールドからこの配列を作成する方法がわかりません。どんな助けでも大歓迎です。
これはあなたが探しているものですか?
int choice = rand() % 2; NSString* result; if (choice == 0) result = textField1.text; else result = textField2.text; .... label.text = result;