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];