标签: ios
我正在文本字段中显示所选的tableview行数据,并将所有选定的字符串连接起来。 我想从该连续字符串中删除未选择的数据。 任何人都可以帮助我。
答案 0 :(得分:1)
试试这个:
yourString = [yourString stringByReplacingOccurrencesOfString:unselectedRowData withString:@""]; yourTextField.text = yourString;