I have a API that hands back a string of numbers based on a User. Once the API Request is made the function places the numbers into an Array.
var usernumbers = userResponse["Numbers"] as NSArray
The debugger PrintLn shows:
( 16467621007, 14152555613, 14046206007 )
When I hand this to UITableView, how do I split up the array so that each number goes into a separate cell? Ive tried:
let rowData: NSArray = tableData (usernumbers has been handed to table data)
I've tried:
cell.textLabel?.text = rowData.row (and all varieties of)
Where am I going wrong?
rowData.row, since NSArray doesn't have arowproperty.