We have a crash on a real iPhone4, which only happens on iPhone4 (not iPhone6 or the simulator).
The accident occurs here:
PFQuery *getRelevantRows=[PFQuery queryWithClassName:@"Que"];
[getRelevantRows orderByDescending:@"updatedAt"];
getRelevantRows.limit=150;
[getRelevantRows findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error)
in the line that finds the objects on the server.
Crash Report:
'NSInvalidArgumentException', reason: '*** setObjectForKey: key cannot be nil'
and its in line:
PfmultiProcessFileLockController
We use the latest SDKs for Parse. We can’t let go now, what could it be?
source
share