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.
選択したテーブルビューの行データをテキストフィールドに表示し、選択したすべての文字列を連結しました。その連結された文字列から選択されていないデータを削除したいと思います。どんな体でも助けてくれませんか。
これを試して:
yourString = [yourString stringByReplacingOccurrencesOfString:unselectedRowData withString:@""]; yourTextField.text = yourString;