-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJDFlipNumberViewImageFactory.m
executable file
·152 lines (126 loc) · 3.93 KB
/
JDFlipNumberViewImageFactory.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
//
// JDFlipNumberViewImageFactory.m
// FlipNumberViewExample
//
// Created by Markus Emrich on 05.12.12.
// Copyright (c) 2012 markusemrich. All rights reserved.
//
#import "JDFlipNumberViewImageFactory.h"
static JDFlipNumberViewImageFactory *sharedInstance;
@interface JDFlipNumberViewImageFactory ()
@property (nonatomic, strong) NSArray *topImages;
@property (nonatomic, strong) NSArray *bottomImages;
@property (nonatomic, strong) NSString *imageBundle;
- (void)setup;
@end
@implementation JDFlipNumberViewImageFactory
+ (JDFlipNumberViewImageFactory*)sharedInstance;
{
if (sharedInstance != nil) {
return sharedInstance;
}
return [[self alloc] init];
}
- (id)init
{
@synchronized(self)
{
if (sharedInstance != nil) {
return sharedInstance;
}
self = [super init];
if (self) {
sharedInstance = self;
self.imageBundle = @"JDFlipNumberView";
[self setup];
}
return self;
}
}
- (void)setup;
{
// create default images
[self generateImagesFromBundleNamed:self.imageBundle];
// register for memory warnings
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(didReceiveMemoryWarning:)
name:UIApplicationDidReceiveMemoryWarningNotification
object:nil];
}
+ (id)allocWithZone:(NSZone *)zone;
{
if (sharedInstance != nil) {
return sharedInstance;
}
return [super allocWithZone:zone];
}
#pragma mark -
#pragma mark getter
- (NSArray *)topImages;
{
@synchronized(self)
{
if (_topImages.count == 0) {
[self generateImagesFromBundleNamed:self.imageBundle];
}
return _topImages;
}
}
- (NSArray *)bottomImages;
{
@synchronized(self)
{
if (_bottomImages.count == 0) {
[self generateImagesFromBundleNamed:self.imageBundle];
}
return _bottomImages;
}
}
- (CGSize)imageSize
{
return ((UIImage*)self.topImages[0]).size;
}
#pragma mark -
#pragma mark image generation
- (void)generateImagesFromBundleNamed:(NSString*)bundleName;
{
self.imageBundle = bundleName;
// create image array
NSMutableArray* topImages = [NSMutableArray arrayWithCapacity:10];
NSMutableArray* bottomImages = [NSMutableArray arrayWithCapacity:10];
// create bottom and top images
for (NSInteger j=0; j<10; j++) {
for (int i=0; i<2; i++) {
NSString *imageName = [NSString stringWithFormat: @"%d.png", j];
NSString *bundleImageName = [NSString stringWithFormat: @"%@.bundle/%@", bundleName, imageName];
NSString *path = [[NSBundle mainBundle] pathForResource:bundleImageName ofType:nil];
UIImage *sourceImage = [[UIImage alloc] initWithContentsOfFile:path];
CGSize size = CGSizeMake(sourceImage.size.width, sourceImage.size.height/2);
CGFloat yPoint = (i==0) ? 0 : -size.height;
NSAssert(sourceImage != nil, @"Did not find image %@.png in bundle %@.bundle", imageName, bundleName);
// draw half of image and create new image
UIGraphicsBeginImageContextWithOptions(size, NO, [UIScreen mainScreen].scale);
[sourceImage drawAtPoint:CGPointMake(0,yPoint)];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
// save image
if (i==0) {
[topImages addObject:image];
} else {
[bottomImages addObject:image];
}
}
}
// save images
self.topImages = [NSArray arrayWithArray:topImages];
self.bottomImages = [NSArray arrayWithArray:bottomImages];
}
#pragma mark -
#pragma mark memory
// clear memory
- (void)didReceiveMemoryWarning:(NSNotification*)notification;
{
self.topImages = @[];
self.bottomImages = @[];
}
@end