Hello.
I am getting scores from Scoreoid using this code:
local onComplete = function( scores ) for i = 1, #scores, 1 do print( scores[i].username, scores[i].score ) end end scoreoid:getScores( orderBy, order, limit, startDate, endDate, platform, difficulty, onComplete )
Instead of this print( scores[i].username, scores[i].score ), I wanna show each scores[i].username and scores[i].score in a table view widget.
Here is a link to table view widget example: http://docs.coronalabs.com/api/library/widget/newTableView.html
How to implement this for loop with table view widget? I can’t make it work.
So I need to edit the example of Table View widget to show each username and score in each row.
Help please 