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.
我正在文本字段中显示选定的 tableview 行数据并连接所有选定的字符串。我想从该连接字符串中删除未选择的数据。任何机构都可以帮助我。
尝试这个:
yourString = [yourString stringByReplacingOccurrencesOfString:unselectedRowData withString:@""]; yourTextField.text = yourString;