iOS Question iTableview issue

Adilson Jacinto

Active Member
Licensed User
Longtime User
I have an issue in using Tableview, for some reason if I try to display some text in the Tableview in a function like for example Table_view.AddSingleLine("single line") it works fine, but if I use the same method in JobDone function, it does not display anything... Why is that?

Thanks
 

Adilson Jacinto

Active Member
Licensed User
Longtime User
Have you called TableView.ReloadSection?

Hi Erel, where do I have to call TableView.ReloadSection? is in JodDone function? or after I initialize it in Application_Start?

And also TableView.ReloadSection expects a int value, what should that be in this case?

Thanks
 
Upvote 0

Adilson Jacinto

Active Member
Licensed User
Longtime User
You need to call it after you add or remove items from the list. Pass 0 if you haven't created multiple sections.

Hi @Erel, I have another problem with TableView, how can I change the background color?

In Application_Start = TableView.Color = Colors.Transparent

Then in JobDone, it loses the color.Transparent and goes back to white, I even tried to call TableView.Color = Colors.Transparent each time but it does not work.
 
Upvote 0
Top