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.
購入の概要を保持する文字列の配列があり、ビューが読み込まれるたびにその配列をテキスト ボックスに表示する必要があります。これを実現するためのコードはどのようになりますか?
あなたが使うだろうcomponentsJoinedByString
componentsJoinedByString
//arr is your curent array NSString *str = [arr componentsJoinedByString:@" "]; textField.text = str;