From c439f18b73b1e191caeb04a608bfcf3f7a8164a5 Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Tue, 11 Feb 2014 16:55:15 -0800 Subject: [PATCH] Beginning story list refactor. --- clients/ios/Classes/NewsBlurAppDelegate.m | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/clients/ios/Classes/NewsBlurAppDelegate.m b/clients/ios/Classes/NewsBlurAppDelegate.m index 2e011a387..506d6e5a8 100644 --- a/clients/ios/Classes/NewsBlurAppDelegate.m +++ b/clients/ios/Classes/NewsBlurAppDelegate.m @@ -126,13 +126,8 @@ @synthesize storyCount; @synthesize storyLocationsCount; @synthesize visibleUnreadCount; + @synthesize savedStoriesCount; -@synthesize totalUnfetchedStoryCount; -@synthesize remainingUnfetchedStoryCount; -@synthesize latestFetchedStoryDate; -@synthesize latestCachedImageDate; -@synthesize totalUncachedImagesCount; -@synthesize remainingUncachedImagesCount; @synthesize originalStoryCount; @synthesize selectedIntelligence; @synthesize activeOriginalStoryURL; @@ -165,6 +160,13 @@ @synthesize backgroundCompletionHandler; @synthesize cacheImagesOperationQueue; +@synthesize totalUnfetchedStoryCount; +@synthesize remainingUnfetchedStoryCount; +@synthesize latestFetchedStoryDate; +@synthesize latestCachedImageDate; +@synthesize totalUncachedImagesCount; +@synthesize remainingUncachedImagesCount; + + (NewsBlurAppDelegate*) sharedAppDelegate { return (NewsBlurAppDelegate*) [UIApplication sharedApplication].delegate; }