Questions tagged [parseui]

ParseUI is a collection of user interface components which can be used with the Parse iOS SDK or the Parse Android SDK.

ParseUI is a collection of user interface components which can be used with the Parse iOS SDK or the . ParseUI aims at streamlining authentication and display of lists for new screen resolutions.

Useful Links:

35 questions
4
votes
1 answer

Updating ParseUI and Facebook SDK by cocoapods

I am trying to install ParseUI, Facebook SDK by cocoapods. Here is my pod file: platform :ios, '8.0' pod 'ParseUI', '~> 1.1.3' pod 'Parse', '~> 1.7.2' pod 'Facebook-iOS-SDK', '~> 4.1.0' pod 'ParseFacebookUtilsV4', '~>1.7.2' pod 'AFNetworking', '~>…
thomasdao
  • 972
  • 12
  • 26
3
votes
2 answers

Parse UI Not Found Error in Xcode 7

I recently updated to Xcode 7 and am using the Parse framework in my app (Parse, Bolts, and ParseUI). I have changed nothing, however when I open the app in Xcode 7 I'm presented with one error that says "ParseUI/ParseUI.h not found". I've deleted…
Viper
  • 1,327
  • 2
  • 12
  • 33
3
votes
1 answer

ParseUI error when working to add Facebook using swift

So I am following the steps on the parse website ( https://www.parse.com/docs/ios_guide#fbusers/iOS ) to add Facebook login. However Xcode is giving me the error '() -> FBSDKApplicationDelegate!' does not have a member named "application' for the…
SeanW
  • 29
  • 2
3
votes
1 answer

Linker errors with ParseUI iOS and CocoaPods

I was attempting to build an app using Parse and wanted to give ParseUI a shot. I imported Parse's main SDK using Cocoa pods, and it worked fine. When I decided to add ParseUI, I ran into problems. Undefined symbols for architecture i386: …
2
votes
1 answer

Can't display custom cell with PFQueryTableViewController (Swift2)

Using parse.com v1.4 (installed with cocoa pods) with Swift 2 + I've setup up my PFQueryTableViewController (ParseUI) with a custom cell. I believe everything is hooked up fine, however I can't get the cell to display the value from Parse.com even…
ppp
  • 713
  • 1
  • 8
  • 23
2
votes
0 answers

Xcode not recognizing frameworks correctly

Yesterday everything was working fine. This morning I came back and I suddenly received the error "No such module 'ParseUI'." I have the ParseUI installed. I have import Parse and import ParseUI in about 10 of my swift files. But when I build I only…
jjjjjjjj
  • 4,203
  • 11
  • 53
  • 72
2
votes
0 answers

java.lang.IllegalArgumentException: Cannot sign up a user that is already signing up

I use ParseUI to handle signup. I have a couple of users experiencing this crash when signing up for an account: java.lang.IllegalArgumentException: Cannot sign up a user that is already signing up. at…
1
vote
1 answer

Cannot retrieve Twitter email if authenticating using system account on iOS

I am using ParseUI to implement Facebook and Twitter login in my iOS app. If a user has setup more than one Twitter system accounts then app asks account to choose when authenticating. On successful login i am retreiving user details from Twitter…
ashishn
  • 410
  • 5
  • 18
1
vote
0 answers

Parse Server // Parse SDK // ParseUI // PFQueryTableViewController with sections // editActionsForRowAtIndexPath

Parse Server: 2.2.17 (self hosted) Parse-SDK-iOS-OSX: 1.14.2 ParseUI-iOS Version: 1.2.0 Xcode 7.3.1, Swift I'm new at IOS Programming (20 weeks) and build an App for fun and learning. In one of a lot of TableViewControllers with sections, i like to…
1
vote
2 answers

Setup Mailgun for Parse-server-example on Heroku

I am building an Android application using Parse Server Example on Heroku as backend. I need Mailgun to send password reset emails from ParseUI class ParseLoginHelpFragment. I haven't found an answer on how to make Mailgun work with Heroku/Parse…
Dmitri Borohhov
  • 1,513
  • 2
  • 17
  • 33
1
vote
1 answer

How do I register a PFUser that Logs In with ParseUI's Facebook button in swift?

I followed a tutorial in creating a welcome screen with ParseUI and included its provided Facebook button. The simulator now logs into Facebook, but does not create a PFUser in my Parse App Database. There is an extra code for this that I know I…
Jacobo Koenig
  • 11,728
  • 9
  • 40
  • 75
1
vote
2 answers

Present *.viewController on PFLogInViewController whose view is not in the window hierarchy

I have already looked on StackOverFlow. No existing questions seem to help me. I am using ParseUI to handle user login functionality but am running into problems when signing new users up. Problem: When a user goes to sign up and hits the "Sign Up"…
Michael Ninh
  • 772
  • 2
  • 10
  • 23
1
vote
1 answer

clang: error: no such file or directory: 'dynamic_lookup' clang: error: no such file or directory: 'suppress'

When I added the ParseUI lib in my Podfile, after installing pod, I have this error: Ld /Users/dvs/Library/Developer/Xcode/DerivedData/CashCourier-ahmlxuauwynijtcqhgxogvibozet/Build/Products/Debug-iphonesimulator/CashCourier.app/CashCourier normal…
1
vote
1 answer

No known class method for selector 'logInInBackgroundWithReadPermissions:block:'

Im using PFFacebookUtils to set up user login with parse and facebook. I am using the code exactly from this link: https://github.com/ParsePlatform/ParseUI-iOS/wiki/Integrate-Login-with-Facebook Heres a look at my code: NSArray *permissionsArray =…
1
vote
1 answer

No access token (session) upon ParseUI login with Facebook v4

Using Parse UI 1.1.3 (with Parse 1.7.2) and Facebook v4, I have a problem upon login with Facebook. The code is very basic: let loginController = PFLogInViewController() loginController.delegate = self loginController.fields =…
Kalzem
  • 7,320
  • 6
  • 54
  • 79
1
2 3