As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I am trying to update the user after it has been saved. For example:
KCSUser.activeUser().givenName = "hello"
KCSUser.activeUser().saveWithCompletionBlock({
(user, error) -> Void in
NSLog("HERE")
})
Before printing "HERE" the application crashes with an error message
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid type in JSON write (__NSSetM)'
I am using iOS 9.2 on the iPad mini with Kinvey 1.40.3.
Thank you
KCSUser.activeUser().givenName = "hellotest" user.saveWithCompletionBlock { (objectsOrNil: [AnyObject]!, errorOrNil: NSError!) -> Void in if errorOrNil == nil { NSLog("successfully saved user object: %@", objectsOrNil) } else { NSLog("error occurred: %@", errorOrNil) } }
Jonathan Chung
I am trying to update the user after it has been saved. For example:
KCSUser.activeUser().givenName = "hello"
KCSUser.activeUser().saveWithCompletionBlock({
(user, error) -> Void in
NSLog("HERE")
})
Before printing "HERE" the application crashes with an error message
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid type in JSON write (__NSSetM)'
I am using iOS 9.2 on the iPad mini with Kinvey 1.40.3.
Thank you
Can you try with the latest KinveyKit SDK (1.40.7) version? URL for downloading the latest SDK as following:
http://devcenter.kinvey.com/ios/downloads#
I tried with the below code and it successfully updated the “first_name” field in the ‘user' collection for the active user.
Relevant code below:
Thanks,
Pranav
Kinvey Support
Pranav J
Can you try with the latest KinveyKit SDK (1.40.7) version? URL for downloading the latest SDK as following:
http://devcenter.kinvey.com/ios/downloads#
I tried with the below code and it successfully updated the “first_name” field in the ‘user' collection for the active user.
Relevant code below:
Thanks,
Pranav
Kinvey Support
-
Why do I get "Undefined symbols" errors when building with KinveyKit?
-
How do I register push tokens?
-
When using social login, to perform a log-out, do I need to log out of the social network, Kinvey, o
-
How can I assign additional properties to users?
-
Does KinveyKit support 64-bit ARM devices, such as iPhone 5s?
-
Authorization Token Invalid or Expired
-
BOOL and how it is stored in the database.
-
Offline saving throwing errors
-
Custom endpoint not able to form request object
-
Security through business logic
See all 437 topics