RestKit data synchronization post local-deletion issue
问题 I'm using RestKit for an app's backend. Everything is working well, however I'm running into an issue with fetching unaltered data post local deletion. This is the path matching: [self.objectManager addFetchRequestBlock:^NSFetchRequest *(NSURL *URL) { RKPathMatcher *pathMatcher = [RKPathMatcher pathMatcherWithPattern:@"cards"]; if([pathMatcher matchesPath:[URL relativePath] tokenizeQueryStrings:NO parsedArguments:nil]) return [NSFetchRequest fetchRequestWithEntityName:@"Card"]; return nil; }]