I have a multiline array which populates a tableview.
I now also want to use the array for a UITextView to display the string as it's currently being displayed.
I have it displaying everything as I want except for one of the symbols in the array which does not display as it should.
I feel like all I need is the right string format?
textView.text = String(format:"%@", array)
The code above is how I have it ALMOST working but the "x" symbol from the array is being substituted with "\U00d7"
The "x" does not appear to be an actual letter, (thus the "\U00d7") not an iOS one anyway.
Before adding the format "%@", the "x" symbol was being displayed as an x.
I want it to be displayed as I have entered it into the array rather than having to always change the "x" symbol for an iOS "X" symbol.
//Input array let array = ["a","b","c"] //Output string should be like "abc" or "a,b,c" or "a-b-c" etc