Skip to content

Instantly share code, notes, and snippets.

View mslathrop's full-sized avatar

Matt Lathrop mslathrop

View GitHub Profile
//
// AppDelegate.m
// NanoCompanion
//
// Created by Steven Troughton-Smith on 13/01/2015.
// Copyright (c) 2015 High Caffeine Content. All rights reserved.
//
#import "AppDelegate.h"
if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"6.0")) {
//HACK iOS 6 does not retain correctly, causing a refcount of -1, creating a NSZombie
CFBridgingRetain(self.fetchedResultsController.fetchRequest.affectedStores);
}
[self.fetchedResultsController performFetch:&error];