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
//Pull all the policy option hash's into memory | |
NSManagedObjectContext *managedObjectContext = [[SalesManager sharedSalesManager] managedObjectContext]; | |
NSExpressionDescription* objectIdDesc = [NSExpressionDescription new]; | |
objectIdDesc.name = @"objectID"; | |
objectIdDesc.expression = [NSExpression expressionForEvaluatedObject]; | |
objectIdDesc.expressionResultType = NSObjectIDAttributeType; | |
NSFetchRequest *search = [NSFetchRequest fetchRequestWithEntityName:[ExtraPrice entityName]]; | |
search.resultType = NSDictionaryResultType; | |
search.returnsDistinctResults = YES; |
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 Liam Nichols on 06/08/2013. | |
// Copyright (c) 2013 Liam Nichols. All rights reserved. | |
// | |
// To change the template use AppCode | Preferences | File Templates. | |
// | |
#import "LNCollectionViewPagedLayout.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
#pragma mark - UIImage Representations | |
- (UIImage *)imageRepresentation | |
{ | |
CGFloat scale = [[UIScreen mainScreen] scale]; | |
CGRect rect = CGRectMake(0, 0, scale, scale); | |
CGColorSpaceRef rgbColorSpace = CGColorSpaceCreateDeviceRGB(); | |
CGContextRef context = CGBitmapContextCreate(NULL, CGRectGetWidth(rect), CGRectGetHeight(rect), 8, 0, rgbColorSpace, kCGImageAlphaPremultipliedFirst); |
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
static NSString *dir = @"/Users/liam.nichols/Desktop/layers/"; | |
-(void)sublayersToFile | |
{ | |
for (UIWindow *window in [[UIApplication sharedApplication] windows]) | |
{ | |
if ([window isKindOfClass:NSClassFromString(@"UITextEffectsWindow")]) | |
{ | |
[self subviewsInView:window]; | |
break; |
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
#pragma mark - Keyboard Appearance | |
- (void)keyboardWillShow:(NSNotification *)notification | |
{ | |
NSDictionary* info = [notification userInfo]; | |
CGRect keyboardFrame = [notification.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue]; | |
keyboardFrame = [self.view.window convertRect:keyboardFrame toView:self.view]; | |
CGRect intersectRect = CGRectIntersection(self.view.frame, keyboardFrame); | |
NewerOlder