Hello, Im trying to make a large scrollable list using the tableView widget although im very confused on how to add new lines with information to the list, I thought it would be as simply as this, unless im doing something wrong
local rowTitle = display.newText(row, "Hello", 0, 0, nil, 14) local rowTitle2 = display.newText(row, "New Place", 0, 0, nil, 14) local rowTitle3 = display.newText(row, "Jackson", 0, 0, nil, 14) local rowTitle4 = display.newText(row, "Good Bye ", 0, 0, nil, 14)
Also is there anyway of taking the information from a long table and it automatically convert it to the list?
Thanks