Questions tagged [parse-ios-sdk]

Parse Platform iOS/MacOS/TVOS SDK

The Parse iOS/MacOS/TVOS SDK allows you to store data, manage users, send push notifications, track analytics, and more in just a few lines of code.

Contribute

30 questions
2
votes
1 answer

Error: An appName, publicServerURL, and emailAdapter are required for password reset and email verification functionality

I have an iOS mobile app written in Swift. I am using Parse Server as my backend and I am trying to implement password reset. The documentation only suggests adding the code below which I have…
Jayyunit
  • 55
  • 1
  • 1
  • 9
2
votes
2 answers

Slow data return Parse iOS swift 3

I am using Parse version "1.14.4" iOS 10.3.2 and swift 3. The query is slow whether local (he objects returned are pinned) or remote. Thanks let placeObject = PFObject(className:"PlaceObject") let point =…
user2867432
  • 382
  • 4
  • 14
1
vote
0 answers

"Signing for "Parse-Parse" requires a development team. Select a development team in the Signing & Capabilities editor."

I have a simple Xcode project that uses both Cocoapods and SPM to handle dependencies, Cocoapods being used only for Parse iOS SDK. I don't exactly know when this started, but everytime I run pod install or pod update now, a Parse-Parse target gets…
1
vote
1 answer

How to add headers in Parse Calls in Parse iOS SDK?

I am trying to add some headers to all my parse calls on a global level in my iOS project (using swift). However i am unable to find a way to do so. Can someone help here.
Manvendra Sah
  • 103
  • 1
  • 10
1
vote
0 answers

Video saved in temp folder works in AVPlayer on simulator but not on real device

I am having a problem with AVPlayer, I'm using Parse SDK to store user files, and I want to fetch a movie file (.mp4) and display it using AVPlayer. There is a problem with using directly the Parse file url, so I'm trying a different approach: //…
Another Dude
  • 1,204
  • 4
  • 15
  • 33
1
vote
2 answers

Display Image From Parse In Swift

I am trying to display the image I have stored in Buddy For Parse into a UIImageView, however I keep getting this error: Could not cast value of type 'PFFileObject' (0x1045e0568) to 'NSString' (0x1041d75d8). 2019-04-13 18:15:09.869460-0500…
dabdoue
  • 21
  • 1
1
vote
1 answer

Parse Server data not shared between app and today extension

I'm using a parse server for delivering news and calendar information to iOS and Android apps. (Therefore I don't need any user accounts.) I followed the instructions on the parse site (https://docs.parseplatform.org/ios/guide/#enable-data-sharing)…
0
votes
0 answers

ParseSwift not Saving Int to Column - undefined

I have a simple GameScore object as defined in docs (https://github.com/parse-community/Parse-Swift/blob/main/ParseSwift.playground/Pages/1%20-%20Your%20first%20Object.xcplaygroundpage/Contents.swift) import Foundation import ParseSwift struct…
C0D3
  • 6,440
  • 8
  • 43
  • 67
0
votes
0 answers

ParseLiveQuery-iOS-OSX received data but unable to trigger event handler in SwiftUI

I'm using ParseLiveQuery-iOS-OSX library to receive live server updates from my Parse Server in a SwiftUI project. I've followed closely to various sources online. Below is my current viewmodel: class InitializationViewModel: ObservableObject{ …
0
votes
0 answers

Chat Not showing message history for both users in Messages Tab IOS Social Media App

I am currently working on implementing Direct Messaging in my iOS Social Media App, and thus far I have it functioning for the most part. However, I have two issues that I haven't been able to fix: 1.) The current user (we'll call him user1) can see…
0
votes
1 answer

ParseSwift: how to declare a [String: Any]? property for a ParseObject?

I am trying to use Parse-Swift SDK, and specifically in the app database I have some properties which are dictionaries, like this one: elements: Dictionary ["test_string": "hello", "test_number": 22.2] // an example of a value for this…
Another Dude
  • 1,204
  • 4
  • 15
  • 33
0
votes
0 answers

Parse-Server and HTTP/2 connections to APNS

We just got a message from Apple: On March 29, 2021, token and certificate-based HTTP/2 connections to the Apple Push Notification service must incorporate the new root certificate (AAACertificateServices 5/12/2020) which replaces the old GeoTrust…
Merre
  • 1
0
votes
1 answer

Remove value for a key on a PFObject

I am trying to update an object based on an edit object form that I provided to the user. Whenever the value for a field is set to "" It gives me an error Can't use nil for keys or values on PFObject. Use NSNull for values. I have tried a couple of…
Shez Ratnani
  • 312
  • 3
  • 15
0
votes
1 answer

How to construct Parse Objects from JSONs?

I have JSONs like this; { createdAt: a_date, text: "some text", likes: 8 } And I want to convert them into PFObjects… here’s how I do it; let post = PFObject(className: "Post", dictionary: jsonPost) The thing is that after that, the…
Sotiris Kaniras
  • 520
  • 1
  • 12
  • 30
0
votes
1 answer

Parse Platform on iOS: Relations, Joins, or Arrays for Large Many-to-Many?

In the Parse.com API reference for Swift on iOS, it is very clear when to use the different kinds of One-to-Many relationships, based on the expected size of the Many side. But I find it less clear on what kind of Many-to-Many relationships to use…
Le Mot Juiced
  • 3,761
  • 1
  • 26
  • 46
1
2