If I have 2 string arrays, it'd be fairly simply to assign one to the other in one line of code (w/o having to use a for-loop):
var sArray1 = ["A","B","C"]
var sArray2 = sArray1
However, I'd like to do something similar with an array of UITextFields, but can't figure it out. I feel like it should look something like this:
var sArray1 = ["A","B","C"]
var sArray2 = [textField1, textField2, textField3]
sArray2.text = sArray1