Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Delete object from Parse table in iOS.

If you want to delete an object from Parse DB then you have to run a query to fetch that object and then run a loop to delete it. If you already have that object then just call delete method. Here is the complete code. PFQuery *query = [PFQuer...

Save data to Parse DB table in iOS app

To save data in parse DB table, create one PFObject and write the information that you want to save to table. For example - I have a table name "Post" with column names : title, message, postTime. Lets save one record to this table. PFObject ...

Fetch Parse PFUser data in iOS

If you are querying on Parse User class and not getting the user data of custom columns then use below code. PFQuery *query= [PFUser query]; [query whereKey:@"username" equalTo:[[PFUser currentUser]username]]; [query getFirstObjectIn...

How to check BOOL value of Parse Object in iOS

If you are a beginner in Parse SDK and integrating it for the first time then you may face this little hurdle. While fetching Boolean data from Parse DB we get BOOL value in NSNumber format and we can not check or compare it directly with iOS bo...

Facebook Login in Parse

Parse provides simple Facebook login where it saves Access Token and limited user info. Inside your viewcontroller where you have implemented PFLogInViewControllerDelegate, PFSignUpViewControllerDelegate delegates just call Facebook request as m...
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: