Questions tagged [parse-framework]
36 questions
9
votes
1 answer
IOS 9 Swift - Parse Facebook login does not open native Facebook App
I've integrated Parse Framework with all Facebook dependencies to my App.
My plist configuration looks like this:
CFBundleURLTypes
CFBundleURLSchemes
…

Shlomi Schwartz
- 8,693
- 29
- 109
- 186
9
votes
2 answers
Parse iOS SDK: Understanding Cloud Code
Scenario = I am slowly but surely wrapping my head around what is going on with Parse's cloud code features. I just need some help from those who would like to answer some short, relatively simple questions about what is going on in some sample…

Tom Testicool
- 563
- 7
- 26
5
votes
1 answer
Parse Apple Mach O-Linker error?
I was using the parse framework and all of a sudden I got 39 errors. even when I delete the the framework, it still has the errors. I already checked the build phases/settings and the paths, but nothing worked. Also, I'm using xcode 4.6.3 (I have an…

anika
- 73
- 7
4
votes
2 answers
Parse Cloud Code: Delete All Objects After Query
Scenario
I have an app that allows users to create an account, but also allows the user's the ability to delete their account. Upon deletion of their account I have a Cloud Code function that will delete all of the "Post"s the user has made. The…

Brandon A
- 8,153
- 3
- 42
- 77
2
votes
0 answers
Can not retrieve data from local database after saving it from Parse in ios
I have logged in here with this code and after that a i have saved the data in local DB using Pinning .
[PFUser logInWithUsernameInBackground:name password:pass
block:^(PFUser *User, NSError *error) {
…

Sushrita
- 725
- 10
- 29
2
votes
1 answer
Parse iOS SDK + Cloud Code: Error: Object [object Object] has no method 'set'
I am trying out Cloud Code for the first time and I've run into some trouble. I think I have most of this right. I'm trying to add a user's "ID" to another user's object at an array called "likes". The code I'm using…

Brandon A
- 8,153
- 3
- 42
- 77
2
votes
1 answer
Sending Push Notification from mobile to particular user using parse [Parse IOS]
I have saved user pointer in instalation class. Web backend shows 0 subscribers
I am sending notification using below code
PFQuery *qry = [PFUser query];
[qry getObjectWithId:friendObject.objectId]; //friend object is ok like…

Muhammad Adnan
- 2,668
- 15
- 27
2
votes
1 answer
Parse iOS SDK: How to run continuous query efficiently
Scenario = I have an app that allows users to message other users. I also have a button that will display that amount of new (unread) messages that the user has. The amount will be displayed on a badge icon on the tab bar at the bottom.
What I've…

Tom Testicool
- 563
- 7
- 26
1
vote
1 answer
Getting rid of UIWebView in Bolts framework (Parse framework dependecy)
I recently started working with XCode on a project where we are using Parse framework to load data into MongoDB with Heroku.
So I have to release this new app (replica of an existing app with some mods) to App store but I get error email saying…

Harshal Karande
- 476
- 4
- 9
1
vote
1 answer
Build error using Parse.framework on iOS
I try to use parse.framework in my project, so besides added parse.framework
I added these as…

Jay Hu
- 6,041
- 3
- 22
- 33
1
vote
1 answer
How can I get users within a given radius of distance using PFGeoPoint
I have PFGeoPoint in Parse and there is a serachView where the user will enter the radius in miles. So it will return a list of users who are within dat radius of distance.
I know we can fetch the distance from coordinates but I don't know how to…

Sushrita
- 725
- 10
- 29
1
vote
1 answer
how can I send coordinates to parse and save it as parse PFGeopoint
How can i send coordinates to Parse fetched by CLLocation and save it there as PFGeoPoint's latitude and longitude?
I am able to get the coordinates from CLLocation and I want to send it to Parse. In Parse I have a column named "coordinates" of type…

Sushrita
- 725
- 10
- 29
1
vote
1 answer
Framework Errors in Parse App ParseFacebookUtils
I updated the Parse Framework to the newest version in my app, and now I am getting a TON of errors in my app, mostly Framework related:
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_FBSDKAccessToken", referenced from:
…

user717452
- 33
- 14
- 73
- 149
1
vote
2 answers
Parse iOS SDK + Cloud Code: How to update user
I am confused on how to update a user from cloud code. If someone can help me out with getting my mind right about this I'd appreciate it.
The cloud code I will use for this example is:
cloud code
Parse.Cloud.define("like", function(request,…

Brandon A
- 8,153
- 3
- 42
- 77
1
vote
1 answer
Get a PFUser details who are not current user
I am using the Parse framework and have it set up where I can login and access the user who logs in PFUser object. I want to be able to visit a friends page and to do this i need to query and retrieve data (names and other pieces of information) of…

Oli Black
- 441
- 2
- 9
- 23