This file contains 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
// | |
// NSEntityDescription+Toolbox.h | |
// | |
// | |
// Created by Rabe Bernd on 02.07.12. | |
// Copyright (c) 2012 RABE_IT Services. All rights reserved. | |
// | |
#import <CoreData/CoreData.h> |
This file contains 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
// | |
// NSDate+Toolbox.h | |
// | |
// Created by Rabe Bernd on 01.04.12. | |
// Copyright (c) 2012 RABE_IT Services. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
typedef enum { |
This file contains 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
// | |
// Globals.h | |
// | |
// Created by Rabe Bernd on 03.04.12. | |
// Copyright (c) 2012 RABE_IT Services. All rights reserved. | |
// | |
#ifdef __OBJC__ | |
NSString *CustomLocalized(NSString *stringToken); | |
NSBundle *yourBundle(void); |
This file contains 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
// | |
// FSAppDelegate.m | |
// FastStart | |
// | |
// Created by Rabe Bernd on 28.02.12. | |
// Copyright (c) 2012 RABE_IT Services. All rights reserved. | |
// | |
#import "FSAppDelegate.h" |
This file contains 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
// | |
// AppDelegate+ImportDB.m | |
// LogBook | |
// | |
// Created by Bernd Rabe on 16.09.10. | |
// Copyright 2010 RABE_IT Services. All rights reserved. | |
// | |
// Helper | |
#import "NSDateFormatter+DateFromStringExtension.h" |
This file contains 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
// | |
// | |
// | |
// | |
// Created by Bernd Rabe on 07.08.12. | |
// Copyright (c) 2012 RABE_IT Services. All rights reserved. | |
// | |
#pragma mark - TabBarController Sequence |
This file contains 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
// | |
// GistCommunicationManager.h | |
// GistExplorer | |
// | |
// Created by Bernd Rabe on 28.05.13. | |
// Copyright (c) 2013 RABE_IT Services. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#import "OperationDelegate.h" |
This file contains 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)test_ExamplesVCSegueConnected | |
{ | |
STAssertNoThrow([self.sut performSegueWithIdentifier:[[self appDelegate] segueIdentifierForClass:[ExamplesVC class]] sender:self], @"ExamplesVC should be connected"); | |
} |
This file contains 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)swapInstanceMethodsForClass:(Class)cls selector:(SEL)sel1 andSelector:(SEL)sel2 | |
{ | |
Method method1 = class_getInstanceMethod(cls, sel1); | |
Method method2 = class_getInstanceMethod(cls, sel2); | |
method_exchangeImplementations(method1, method2); | |
} |
OlderNewer