We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c388fd9 commit f18162bCopy full SHA for f18162b
Parse/PFObject.m
@@ -1633,7 +1633,9 @@ + (instancetype)objectWithClassName:(NSString *)className {
1633
}
1634
1635
+ (instancetype)objectWithClassName:(NSString *)className dictionary:(NSDictionary *)dictionary {
1636
- return [self _objectFromDictionary:dictionary defaultClassName:className completeData:YES];
+ PFObject *object = [self objectWithClassName:className];
1637
+ [object _mergeAfterSaveWithResult:dictionary decoder:[PFDecoder objectDecoder]];
1638
+ return object;
1639
1640
1641
+ (instancetype)objectWithoutDataWithClassName:(NSString *)className objectId:(NSString *)objectId {
0 commit comments