This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // AGNJSONContainerLogger.h | |
| // Agnitio iPlanner | |
| // | |
| // Created by Matt Gough on 14/02/2013. | |
| // Copyright (c) 2013 Agnitio. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> | |
| #import "AGNContainerWalker.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // AGNLogging.h | |
| // Agnitio iPlanner | |
| // | |
| // Created by Matt Gough on 14/02/2013. | |
| // Copyright (c) 2013 Agnitio. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // AGNSession.m | |
| // Agnitio iPlanner | |
| // | |
| // Created by Matt Gough on 04/02/2013. | |
| // Copyright (c) 2013 Agnitio. All rights reserved. | |
| // | |
| #if ! __has_feature(objc_arc) | |
| #warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // AGNContainerWalker.h | |
| // Agnitio iPlanner | |
| // | |
| // Created by Matt Gough on 14/02/2013. | |
| // Copyright (c) 2013 Agnitio. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // AGNFolderDownloader.h | |
| // Agnitio iPlanner | |
| // | |
| // Created by Matt Gough on 11/03/2013. | |
| // Copyright (c) 2013 Agnitio. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIView+DragAndDrop.h | |
| // Engager | |
| // | |
| // Created by Lee Probert on 21/06/2013. | |
| // Copyright (c) 2013 Agnitio. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // EntypoLabel.h | |
| // Engager | |
| // | |
| // Created by Lee Probert on 31/05/2013. | |
| // Copyright (c) 2013 Agnitio. All rights reserved. | |
| // | |
| /* | |
| This label is designed to be used with the Entypo.ttf font. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void)registerDefaultsFromSettingsBundle | |
| { | |
| NSLog(@"Registering default values from Settings.bundle"); | |
| NSUserDefaults * defs = [NSUserDefaults standardUserDefaults]; | |
| [defs synchronize]; | |
| NSString *settingsBundle = [[NSBundle mainBundle] pathForResource:@"Settings" ofType:@"bundle"]; | |
| if(!settingsBundle) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| //ScreenCaptureView.h | |
| // | |
| #import <UIKit/UIKit.h> | |
| #import <AVFoundation/AVFoundation.h> | |
| /** | |
| * Delegate protocol. Implement this if you want to receive a notification when the | |
| * view completes a recording. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| CoreDataStack - CoreData made easy | |
| c.f. https://github.com/adamgit/CoreDataStack for docs + support | |
| */ | |
| #import <Foundation/Foundation.h> | |
| #import <CoreData/CoreData.h> | |
| #define kNotificationDestroyAllNSFetchedResultsControllers @"DestroyAllNSFetchedResultsControllers" |