I have made a sample project using iTableview based on the iTableview tutorial.
I then fetch data from a mysql base and then trying to put data to iTableview.
I can put data before fetching from mysql but after I cannot.
Sub getChars
For c = 65 To 90
TableViewChar.AddSingleLine(Chr(c))
Next
TableViewChar.ReloadAll
End Sub
Sub getCars
For i = 0 To brand_cars.Size - 1
mAll = brand_cars.Get(i)
Log(mAll.Get("brand") & " " & mAll.Get("model") & " / " & mAll.Get("engine") & " / " & mAll.Get("yearfrom"))
TableViewCars.AddSingleLine(mAll.Get("brand") & " " & mAll.Get("model") & " / " & mAll.Get("engine") & " / " & mAll.Get("yearfrom"))
Next
TableViewCars.ReloadAll
End Sub