I have a UITableView containing UITextFields. I would like to be able to add new text fields by pasting text copied from another application and have the paste event create as many textFields as there are newlines in the pasted text.
For example, I have selected these lines from the Notes app:
Alice
Fred
Betsy
When I paste that selection into my app via the keyboard when editing a textField I get the string "Alice Fred Betsy" with the newline characters removed. This removal must be happening deep in the keyboard before it gets to the textField. Is there some way I can intervene and make the paste into three paste events resulting in three textFields?
Thanks!
-Allan