empty parse dashboard swift - xcode

My app uses parse and I've already migrate to heroku + mlab. However, the data's not always there when I open the parse dashboard. I often get the following (when i click into no class will appear)
My app login a user and display a tableview of uiimages at launch. My app would often try loading but not being able to fetch anything from the server. Every time that happens I checked the dashboard and get the above. Any help would be greatly appreciated!
Update
i'll try to provide as much info as possible, please tell me if you hv any specific info you want me to share

Related

Is there a way to know if the windows screen display is updated/changed

We have a requirement to check any customer is using the application. On the client system our application will run in full screen mode. Based on the user activity the display will be updated.But the problem is I dont have any access to the source code of the application. So I am thinking if I can get any general events from windows when the screen is updated. If the screen is updating then I can consider that some customer is using the application
I am thinking of other approach is to get the screenshots in different intervals and compare. If both the images are matched then assuming it to be in idle mode or else some user activity is going on. If Ican get display update events then that will be easy for to handle.
Please let me know if you have any other approaches

Oracle APEX 4.2 How to store string and access from any page?

I'm a complete noob and have only been learning this since last night.
I have an APEX application with a few forms and reports that I have managed to get working correctly if I provide the exact SQL statement in the source box. What I want to do is be able to set a variable that I can access from any page.
I want to be able to return its value to use in my SQL source clause in my forms when the pages load and I also want to be able to assign its value maybe via a process, branch or button (i'm still learning what they are propperly) on any page.
I've been at this for hours now and the tiny amount of help I can find on this is completely beyond me and its driving me mad, so if anyone can help me figure out how to do this it would be hugely appreciated.
You can create one application item (Shared Components -> Application Items) and then set it from your PL/SQL code using APEX_UTIL package (apex_util.set_session_state('TESTE', 'Hello').

Javascript Application Key Issue

I'm using parse to store high scores for an app, the website for my app is displaying the high scores in a leaderboard.
How can I make the javascript application key only have read access?
I want to prevent anyone from grabbing the key and start updating/changing/destroying my data. I am looking for a way to prevent this.
Thanks for your time.
What you need here is Class-Level Permission
Browse to your class in the Parse dashboard
Click on Security button
Untick Write to prevent public non-read access to your data
Check the link for more information.

Downloading Saved Data on the iCloud

I'm new to syncing data from iCloud so I have been using different tutorials to figure out how to upload my Core Data database to the iCloud. To do this I used a GitHub Source Code (https://github.com/mluisbrown/iCloudCoreDataStack). According to the Debug menu on Xcode 5 I am uploading Data to the iCloud and then it shows it is downloading however I see no data being returned, I think this is because I have nothing implemented in the -(void)storesDidChange:(NSNotification *)note method. I have no clue how to put this data into practice. Please let me know if there is anything you need from me and I'll be happy to get it to you! Thank You!
This is a standard Core Data iCloud issue and is not impacted by the code you are using.
You need to consume that notification when it comes back. You do this with your main NSManagedObjectContext using the method -[NSManagedObjectContext mergeChangesFromContextDidSaveNotification:]. This will cause your NSManagedObjectContext to tickle any NSFetchedResultsController instances that you have.
I am also using PersistanceStack. In storesDidChange:, I simply post a notification to the notification center. This is caught by any active view controller displaying any relevant data.
In the view controller I simply update the Interface, e.g. by performing a fetch on the fetched results controller and/or reloading a table view.

Getting information from website and displaying in UITableView

I want to get information from website and display it in a UITableView.
http://www.uhhospitals.org/rainbowchildren/HealthInformation/SymptomChecker/AbdominalPain.aspx
is the website I am trying to access.
In the Symptom Description tab page, Definition is a section in table view and causes is another section.
In the 'should I call' tab page,I want each of the conditions(points) to be listed in a cell and the their heading would be titleForHeader for that section.
Initially I was manually storing all the data in different tables and I was trying to access them. I was really excited to find this website. Now I am clueless how to use the data in my application. Any idea on how to proceed would be greatly appreciated.
If there is any tutorial that I can read and understand, it will really help (I could not hit on a proper one). I read that I could do xml parsing but I am not sure where to find API for this page.
Thanks!

Resources