Hi,
I have a sceen in my app where the tableview data is json decoded from a wordpress url. Now my issue is that the data updates behave really have really weird. For most of the time its not getting uppdated even if the app is restarted. Thats both on iOS device and in the simulator. This just started to happen couple of days ago. Before that a simple restart of the app would update the tableview. First I thought this is because Im not cleaning up the scene as I have been lazy doing that and started with that first, but the problem presists. Then I thought its because I’m saving the son data to a file and loading it so deleted the file when exiting the scene but that didn’t fix the issue either. After that I gave up and got the json data from a php file insted and now the tableview always has the latest data when existing and going in to the scene again. The only issue I have with that is that its a little bit slower and most of the error handling has to be done in the php file. Have anybody had this issue before? The only thing that I have changed with the code that fixed the issue is the url that is pointing to the php file now. What I did notice is that the json data that is being returned has some invalid characters that are html tags in it according to http://jsonformatter.curiousconcept.com/ but its still working as it should, just wasn’t getting the latest data.