
Featured
- 
            
              Objective C or Swift - Which Technology to Learn for iOS Development?Swift programming language is completely based on by siddharth.sindhi
- 
            
              Make UIImage White Background Transparent in iOSIf you came across to a requirement where you want by ashish.nakoti
- 
            
              User's location update on server when app is in background.Code for those Apps where we need to update user's by ashish.nakoti
- 
            
              Animate button with zoom and bounce effect in iosMany social apps are using bouncing effect for but by ashish.nakoti
- 
            
              Crop an image from UIImageViewWith the following method stated below you can cro by kuldeep.butola
Tags
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... 
                       
        
        
 
        
        