You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This results in a compiler warning Incompatible pointer types initializing 'NSDictionary *' with an expression of type 'NSManagedObject * _Nullable'
because the compiler does not know about the set result type.
I think the call here needs an explicit type cast, like so NSDictionary *resultsDictionary = (NSDictionary *)[self MR_executeFetchRequestAndReturnFirstObject:request inContext:context];
The text was updated successfully, but these errors were encountered:
In NSManagedObject+MagicalAggregation the method MR_aggregateOperation has the following lines:
This results in a compiler warning
Incompatible pointer types initializing 'NSDictionary *' with an expression of type 'NSManagedObject * _Nullable'
because the compiler does not know about the set result type.
I think the call here needs an explicit type cast, like so
NSDictionary *resultsDictionary = (NSDictionary *)[self MR_executeFetchRequestAndReturnFirstObject:request inContext:context];
The text was updated successfully, but these errors were encountered: