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
from: Pam Giddy, Director POWER2010 <[email protected]> | |
reply-to: [email protected] | |
to: [email protected] | |
date: Thu, Feb 18, 2010 at 3:23 PM | |
subject: Fwd: Time for a strong finish | |
Dear Friend, | |
I've just received this email from Mark Ross - POWER2010's Head of Campaigns - and I wanted to share it with you. |
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
#import <Foundation/Foundation.h> | |
@interface OTActivityIndicatorView : UIActivityIndicatorView | |
{ | |
} | |
@end |
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
@interface OLVIconViewCell : UIView | |
@property(nonatomic, readonly) NSString *reuseIdentifier; | |
@property(nonatomic, readonly) UILabel *textLabel; | |
@property(nonatomic, readonly) UILabel *detailTextLabel; | |
@property(nonatomic, readonly) UIImageView *imageView; | |
- (id)initWithReuseIdentifier:(NSString *)identifier; | |
- (void)prepareForReuse; |
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
CGAffineTransform CGAffineTransformFromRectToRect(CGRect fromRect, CGRect toRect) | |
{ | |
CGSize scale = CGSizeMake(toRect.size.width / fromRect.size.width, toRect.size.height / fromRect.size.height); | |
CGRect scaledFromRect = CGRectMake(fromRect.origin.x * scale.width, fromRect.origin.y * scale.height, | |
fromRect.size.width * scale.width, fromRect.size.height * scale.height); | |
CGSize translation = CGSizeMake(fromRect.origin.x - scaledFromRect.origin.x, fromRect.origin.y - scaledFromRect.origin.y); | |
return CGAffineTransformMake(scale.width, 0.0, 0.0, scale.height, translation.width, translation.height); | |
} |
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)performLayout | |
{ | |
[super performLayout]; | |
myScrubView.frame = self.bounds; | |
BOOL reload = NO; | |
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]; | |
if (orientation == UIInterfaceOrientationPortrait) | |
{ |
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
// | |
// TestView.m | |
// ButtonHitTest | |
// | |
// Created by Hamish Allan on 03/01/2012. | |
// | |
#import "TestView.h" | |
@implementation TestView |
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
@implementation UIDocumentSubclass | |
{ | |
UIDocumentState myDocumentState; | |
} | |
- (void)openWithCompletionHandler:(void (^)(BOOL success))completionHandler | |
{ | |
dispatch_queue_t originalQueue = dispatch_get_current_queue(); | |
NSFileCoordinator *coordinator = [[NSFileCoordinator alloc] initWithFilePresenter:self]; |