Parse-SDK-iOS-OSX icon indicating copy to clipboard operation
Parse-SDK-iOS-OSX copied to clipboard

The Apple SDK for Parse Platform (iOS, macOS, watchOS, tvOS)

Results 102 Parse-SDK-iOS-OSX issues
Sort by recently updated
recently updated
newest added

I have a simple parse schema Class AClass ``` import Parse class AClass : PFObject, PFSubclassing { @NSManaged var title: String @NSManaged var childs: [BClass]? override class func initialize() {...

[Parse setServer:@"https://serverNewUrl.com"]; NSLog(@"%@",Parse.server); -----> This prints the new server set, i.e https://serverNewURL.com NSLog(@"%@",Parse.currentConfiguration.server); -----> This prints the old one set, i.e https://oldServerURL.com I am using Parse iOS SDK 1.18

type:bug

For the upcoming Swift 5.3/XCode 12. SwiftUI applications by default will no longer have an app delegate. Instead, this is what is created by default. ``` @main struct Xcode12TestApp: App...

type:docs

App crashes because of [NSNull enumerateKeysAndObjectsUsingBlock:]: unrecognized selector sent to instance in case in case an object with null ACL.

I want to offer multiple accounts on my iOS app (on Android I've already achieved that). I know the library allows only one current user and for this reason I...

type:bug

In the past few weeks, I've had multiple users reporting problems with my app related to the Parse SDK. After some troubleshooting, it looks like the issue is that the...

type:bug

I suspect there's a bug in `arrayBySplittingArray `, particularly: https://github.com/parse-community/Parse-SDK-iOS-OSX/blob/5dad4f224d5ae4b36ead891acbdfc15b86d527ae/Parse/Parse/Internal/PFInternalUtils.m#L245 I think there are two issues, but this is only a suspicion as there are no test cases for `arrayBySplittingArray`....

type:bug

Any use of requestAlwaysAuthorization prevents the build from showing up in the iTunes Connect when app includes an AppClip target, despite not showing any errors. The following email message is...

type:bug
bounty:$20

Is it possible to determine if the PFUser is connected to Apple Sign in so that I don't grab the username which is appears as a random collection of letters?

I am trying to support offline save operations with save eventually and I am running into an issue. Let's say I have a TodoList class which has a relations to...

type:bug