Skip to content

Commit ac6bdd4

Browse files
committed
Initial commit
0 parents  commit ac6bdd4

18 files changed

+802
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Xcode
2+
.DS_Store
3+
build/
4+
*.pbxuser
5+
!default.pbxuser
6+
*.mode1v3
7+
!default.mode1v3
8+
*.mode2v3
9+
!default.mode2v3
10+
*.perspectivev3
11+
!default.perspectivev3
12+
*.xcworkspace
13+
!default.xcworkspace
14+
xcuserdata
15+
profile
16+
*.moved-aside
17+
DerivedData
18+
.idea/

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2013 Claas Lange
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# iOS7Colors
2+
3+
iOS7Colors is a simple category on UIColor which provides you some of the standard colors used throughout iOS 7.
4+
5+
## Usage
6+
7+
Usage is really simple Just include `UIColor-iOS7Colors.h` & `UIColor-iOS7Colors.m` in your project and import them whereever you need the colors.
8+
9+
#import "UIColor-iOS7Colors.h"
10+
11+
UILabel *label = [UILabel alloc] initWithFrame:CGRectZero];
12+
13+
label.textColor = [UIColor iOS7redColor];
14+
15+
The simplest way is to use Cocoapods for integration.
16+
17+
## Credits
18+
19+
The color values are taken from [Louie Mantia's](http://mantia.me) [iOS 7 Color Swatches](http://dribbble.com/shots/1186156-iOS-7-Color-Swatches)
20+
21+
## License
22+
23+
iOS7Colors is licensed under the MIT-License

iOS7Colors.xcodeproj/project.pbxproj

+312
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,312 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
42AD214217C7744100026A10 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42AD214117C7744100026A10 /* UIKit.framework */; };
11+
42AD214417C7744100026A10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42AD214317C7744100026A10 /* Foundation.framework */; };
12+
42AD214617C7744100026A10 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42AD214517C7744100026A10 /* CoreGraphics.framework */; };
13+
42AD214C17C7744100026A10 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 42AD214A17C7744100026A10 /* InfoPlist.strings */; };
14+
42AD214E17C7744100026A10 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 42AD214D17C7744100026A10 /* main.m */; };
15+
42AD215217C7744100026A10 /* CLAAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 42AD215117C7744100026A10 /* CLAAppDelegate.m */; };
16+
42AD215417C7744100026A10 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 42AD215317C7744100026A10 /* Default.png */; };
17+
42AD215617C7744100026A10 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 42AD215517C7744100026A10 /* [email protected] */; };
18+
42AD215817C7744100026A10 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 42AD215717C7744100026A10 /* [email protected] */; };
19+
42AD215B17C7744100026A10 /* CLAViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42AD215A17C7744100026A10 /* CLAViewController.m */; };
20+
42AD215E17C7744100026A10 /* CLAViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42AD215C17C7744100026A10 /* CLAViewController.xib */; };
21+
42AD216617C776AB00026A10 /* UIColor+iOS7Colors.m in Sources */ = {isa = PBXBuildFile; fileRef = 42AD216517C776AB00026A10 /* UIColor+iOS7Colors.m */; };
22+
/* End PBXBuildFile section */
23+
24+
/* Begin PBXFileReference section */
25+
42AD213E17C7744100026A10 /* iOS7Colors.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iOS7Colors.app; sourceTree = BUILT_PRODUCTS_DIR; };
26+
42AD214117C7744100026A10 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
27+
42AD214317C7744100026A10 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
28+
42AD214517C7744100026A10 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
29+
42AD214917C7744100026A10 /* iOS7Colors-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iOS7Colors-Info.plist"; sourceTree = "<group>"; };
30+
42AD214B17C7744100026A10 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
31+
42AD214D17C7744100026A10 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
32+
42AD214F17C7744100026A10 /* iOS7Colors-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "iOS7Colors-Prefix.pch"; sourceTree = "<group>"; };
33+
42AD215017C7744100026A10 /* CLAAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CLAAppDelegate.h; sourceTree = "<group>"; };
34+
42AD215117C7744100026A10 /* CLAAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CLAAppDelegate.m; sourceTree = "<group>"; };
35+
42AD215317C7744100026A10 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
36+
42AD215517C7744100026A10 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
37+
42AD215717C7744100026A10 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
38+
42AD215917C7744100026A10 /* CLAViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CLAViewController.h; sourceTree = "<group>"; };
39+
42AD215A17C7744100026A10 /* CLAViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CLAViewController.m; sourceTree = "<group>"; };
40+
42AD215D17C7744100026A10 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/CLAViewController.xib; sourceTree = "<group>"; };
41+
42AD216417C776AB00026A10 /* UIColor+iOS7Colors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+iOS7Colors.h"; sourceTree = "<group>"; };
42+
42AD216517C776AB00026A10 /* UIColor+iOS7Colors.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+iOS7Colors.m"; sourceTree = "<group>"; };
43+
/* End PBXFileReference section */
44+
45+
/* Begin PBXFrameworksBuildPhase section */
46+
42AD213B17C7744100026A10 /* Frameworks */ = {
47+
isa = PBXFrameworksBuildPhase;
48+
buildActionMask = 2147483647;
49+
files = (
50+
42AD214217C7744100026A10 /* UIKit.framework in Frameworks */,
51+
42AD214417C7744100026A10 /* Foundation.framework in Frameworks */,
52+
42AD214617C7744100026A10 /* CoreGraphics.framework in Frameworks */,
53+
);
54+
runOnlyForDeploymentPostprocessing = 0;
55+
};
56+
/* End PBXFrameworksBuildPhase section */
57+
58+
/* Begin PBXGroup section */
59+
42AD213517C7744100026A10 = {
60+
isa = PBXGroup;
61+
children = (
62+
42AD214717C7744100026A10 /* iOS7Colors */,
63+
42AD214017C7744100026A10 /* Frameworks */,
64+
42AD213F17C7744100026A10 /* Products */,
65+
);
66+
sourceTree = "<group>";
67+
};
68+
42AD213F17C7744100026A10 /* Products */ = {
69+
isa = PBXGroup;
70+
children = (
71+
42AD213E17C7744100026A10 /* iOS7Colors.app */,
72+
);
73+
name = Products;
74+
sourceTree = "<group>";
75+
};
76+
42AD214017C7744100026A10 /* Frameworks */ = {
77+
isa = PBXGroup;
78+
children = (
79+
42AD214117C7744100026A10 /* UIKit.framework */,
80+
42AD214317C7744100026A10 /* Foundation.framework */,
81+
42AD214517C7744100026A10 /* CoreGraphics.framework */,
82+
);
83+
name = Frameworks;
84+
sourceTree = "<group>";
85+
};
86+
42AD214717C7744100026A10 /* iOS7Colors */ = {
87+
isa = PBXGroup;
88+
children = (
89+
42AD215017C7744100026A10 /* CLAAppDelegate.h */,
90+
42AD215117C7744100026A10 /* CLAAppDelegate.m */,
91+
42AD215917C7744100026A10 /* CLAViewController.h */,
92+
42AD215A17C7744100026A10 /* CLAViewController.m */,
93+
42AD216417C776AB00026A10 /* UIColor+iOS7Colors.h */,
94+
42AD216517C776AB00026A10 /* UIColor+iOS7Colors.m */,
95+
42AD215C17C7744100026A10 /* CLAViewController.xib */,
96+
42AD214817C7744100026A10 /* Supporting Files */,
97+
);
98+
path = iOS7Colors;
99+
sourceTree = "<group>";
100+
};
101+
42AD214817C7744100026A10 /* Supporting Files */ = {
102+
isa = PBXGroup;
103+
children = (
104+
42AD214917C7744100026A10 /* iOS7Colors-Info.plist */,
105+
42AD214A17C7744100026A10 /* InfoPlist.strings */,
106+
42AD214D17C7744100026A10 /* main.m */,
107+
42AD214F17C7744100026A10 /* iOS7Colors-Prefix.pch */,
108+
42AD215317C7744100026A10 /* Default.png */,
109+
42AD215517C7744100026A10 /* [email protected] */,
110+
42AD215717C7744100026A10 /* [email protected] */,
111+
);
112+
name = "Supporting Files";
113+
sourceTree = "<group>";
114+
};
115+
/* End PBXGroup section */
116+
117+
/* Begin PBXNativeTarget section */
118+
42AD213D17C7744100026A10 /* iOS7Colors */ = {
119+
isa = PBXNativeTarget;
120+
buildConfigurationList = 42AD216117C7744100026A10 /* Build configuration list for PBXNativeTarget "iOS7Colors" */;
121+
buildPhases = (
122+
42AD213A17C7744100026A10 /* Sources */,
123+
42AD213B17C7744100026A10 /* Frameworks */,
124+
42AD213C17C7744100026A10 /* Resources */,
125+
);
126+
buildRules = (
127+
);
128+
dependencies = (
129+
);
130+
name = iOS7Colors;
131+
productName = iOS7Colors;
132+
productReference = 42AD213E17C7744100026A10 /* iOS7Colors.app */;
133+
productType = "com.apple.product-type.application";
134+
};
135+
/* End PBXNativeTarget section */
136+
137+
/* Begin PBXProject section */
138+
42AD213617C7744100026A10 /* Project object */ = {
139+
isa = PBXProject;
140+
attributes = {
141+
CLASSPREFIX = CLA;
142+
LastUpgradeCheck = 0460;
143+
ORGANIZATIONNAME = claaslange.de;
144+
};
145+
buildConfigurationList = 42AD213917C7744100026A10 /* Build configuration list for PBXProject "iOS7Colors" */;
146+
compatibilityVersion = "Xcode 3.2";
147+
developmentRegion = English;
148+
hasScannedForEncodings = 0;
149+
knownRegions = (
150+
en,
151+
);
152+
mainGroup = 42AD213517C7744100026A10;
153+
productRefGroup = 42AD213F17C7744100026A10 /* Products */;
154+
projectDirPath = "";
155+
projectRoot = "";
156+
targets = (
157+
42AD213D17C7744100026A10 /* iOS7Colors */,
158+
);
159+
};
160+
/* End PBXProject section */
161+
162+
/* Begin PBXResourcesBuildPhase section */
163+
42AD213C17C7744100026A10 /* Resources */ = {
164+
isa = PBXResourcesBuildPhase;
165+
buildActionMask = 2147483647;
166+
files = (
167+
42AD214C17C7744100026A10 /* InfoPlist.strings in Resources */,
168+
42AD215417C7744100026A10 /* Default.png in Resources */,
169+
42AD215617C7744100026A10 /* [email protected] in Resources */,
170+
42AD215817C7744100026A10 /* [email protected] in Resources */,
171+
42AD215E17C7744100026A10 /* CLAViewController.xib in Resources */,
172+
);
173+
runOnlyForDeploymentPostprocessing = 0;
174+
};
175+
/* End PBXResourcesBuildPhase section */
176+
177+
/* Begin PBXSourcesBuildPhase section */
178+
42AD213A17C7744100026A10 /* Sources */ = {
179+
isa = PBXSourcesBuildPhase;
180+
buildActionMask = 2147483647;
181+
files = (
182+
42AD214E17C7744100026A10 /* main.m in Sources */,
183+
42AD215217C7744100026A10 /* CLAAppDelegate.m in Sources */,
184+
42AD215B17C7744100026A10 /* CLAViewController.m in Sources */,
185+
42AD216617C776AB00026A10 /* UIColor+iOS7Colors.m in Sources */,
186+
);
187+
runOnlyForDeploymentPostprocessing = 0;
188+
};
189+
/* End PBXSourcesBuildPhase section */
190+
191+
/* Begin PBXVariantGroup section */
192+
42AD214A17C7744100026A10 /* InfoPlist.strings */ = {
193+
isa = PBXVariantGroup;
194+
children = (
195+
42AD214B17C7744100026A10 /* en */,
196+
);
197+
name = InfoPlist.strings;
198+
sourceTree = "<group>";
199+
};
200+
42AD215C17C7744100026A10 /* CLAViewController.xib */ = {
201+
isa = PBXVariantGroup;
202+
children = (
203+
42AD215D17C7744100026A10 /* en */,
204+
);
205+
name = CLAViewController.xib;
206+
sourceTree = "<group>";
207+
};
208+
/* End PBXVariantGroup section */
209+
210+
/* Begin XCBuildConfiguration section */
211+
42AD215F17C7744100026A10 /* Debug */ = {
212+
isa = XCBuildConfiguration;
213+
buildSettings = {
214+
ALWAYS_SEARCH_USER_PATHS = NO;
215+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
216+
CLANG_CXX_LIBRARY = "libc++";
217+
CLANG_ENABLE_OBJC_ARC = YES;
218+
CLANG_WARN_CONSTANT_CONVERSION = YES;
219+
CLANG_WARN_EMPTY_BODY = YES;
220+
CLANG_WARN_ENUM_CONVERSION = YES;
221+
CLANG_WARN_INT_CONVERSION = YES;
222+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
223+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
224+
COPY_PHASE_STRIP = NO;
225+
GCC_C_LANGUAGE_STANDARD = gnu99;
226+
GCC_DYNAMIC_NO_PIC = NO;
227+
GCC_OPTIMIZATION_LEVEL = 0;
228+
GCC_PREPROCESSOR_DEFINITIONS = (
229+
"DEBUG=1",
230+
"$(inherited)",
231+
);
232+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
233+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
234+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
235+
GCC_WARN_UNUSED_VARIABLE = YES;
236+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
237+
ONLY_ACTIVE_ARCH = YES;
238+
SDKROOT = iphoneos;
239+
};
240+
name = Debug;
241+
};
242+
42AD216017C7744100026A10 /* Release */ = {
243+
isa = XCBuildConfiguration;
244+
buildSettings = {
245+
ALWAYS_SEARCH_USER_PATHS = NO;
246+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
247+
CLANG_CXX_LIBRARY = "libc++";
248+
CLANG_ENABLE_OBJC_ARC = YES;
249+
CLANG_WARN_CONSTANT_CONVERSION = YES;
250+
CLANG_WARN_EMPTY_BODY = YES;
251+
CLANG_WARN_ENUM_CONVERSION = YES;
252+
CLANG_WARN_INT_CONVERSION = YES;
253+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
254+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
255+
COPY_PHASE_STRIP = YES;
256+
GCC_C_LANGUAGE_STANDARD = gnu99;
257+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
258+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
259+
GCC_WARN_UNUSED_VARIABLE = YES;
260+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
261+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
262+
SDKROOT = iphoneos;
263+
VALIDATE_PRODUCT = YES;
264+
};
265+
name = Release;
266+
};
267+
42AD216217C7744100026A10 /* Debug */ = {
268+
isa = XCBuildConfiguration;
269+
buildSettings = {
270+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
271+
GCC_PREFIX_HEADER = "iOS7Colors/iOS7Colors-Prefix.pch";
272+
INFOPLIST_FILE = "iOS7Colors/iOS7Colors-Info.plist";
273+
PRODUCT_NAME = "$(TARGET_NAME)";
274+
WRAPPER_EXTENSION = app;
275+
};
276+
name = Debug;
277+
};
278+
42AD216317C7744100026A10 /* Release */ = {
279+
isa = XCBuildConfiguration;
280+
buildSettings = {
281+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
282+
GCC_PREFIX_HEADER = "iOS7Colors/iOS7Colors-Prefix.pch";
283+
INFOPLIST_FILE = "iOS7Colors/iOS7Colors-Info.plist";
284+
PRODUCT_NAME = "$(TARGET_NAME)";
285+
WRAPPER_EXTENSION = app;
286+
};
287+
name = Release;
288+
};
289+
/* End XCBuildConfiguration section */
290+
291+
/* Begin XCConfigurationList section */
292+
42AD213917C7744100026A10 /* Build configuration list for PBXProject "iOS7Colors" */ = {
293+
isa = XCConfigurationList;
294+
buildConfigurations = (
295+
42AD215F17C7744100026A10 /* Debug */,
296+
42AD216017C7744100026A10 /* Release */,
297+
);
298+
defaultConfigurationIsVisible = 0;
299+
defaultConfigurationName = Release;
300+
};
301+
42AD216117C7744100026A10 /* Build configuration list for PBXNativeTarget "iOS7Colors" */ = {
302+
isa = XCConfigurationList;
303+
buildConfigurations = (
304+
42AD216217C7744100026A10 /* Debug */,
305+
42AD216317C7744100026A10 /* Release */,
306+
);
307+
defaultConfigurationIsVisible = 0;
308+
};
309+
/* End XCConfigurationList section */
310+
};
311+
rootObject = 42AD213617C7744100026A10 /* Project object */;
312+
}

iOS7Colors/CLAAppDelegate.h

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// CLAAppDelegate.h
3+
// iOS7Colors
4+
//
5+
// Created by claaslange on 23.08.13.
6+
// Copyright (c) 2013 claaslange.de. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
@class CLAViewController;
12+
13+
@interface CLAAppDelegate : UIResponder <UIApplicationDelegate>
14+
15+
@property (strong, nonatomic) UIWindow *window;
16+
17+
@property (strong, nonatomic) CLAViewController *viewController;
18+
19+
@end

0 commit comments

Comments
 (0)