Skip to content

Commit a0b5436

Browse files
committed
Moved reusable files out of demo app dir, to make it easier for use as submodule
1 parent 6a1893c commit a0b5436

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

BadgeView.xcodeproj/project.pbxproj

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
DC9ACB4C14EF7B0E00FBD432 /* BadgeLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9ACB4914EF7B0E00FBD432 /* BadgeLabel.m */; };
11+
DC9ACB4D14EF7B0E00FBD432 /* BadgeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9ACB4B14EF7B0E00FBD432 /* BadgeTableViewCell.m */; };
1012
DCAF788014E115EB00948273 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCAF787F14E115EB00948273 /* UIKit.framework */; };
1113
DCAF788214E115EB00948273 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCAF788114E115EB00948273 /* Foundation.framework */; };
1214
DCAF788414E115EB00948273 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCAF788314E115EB00948273 /* CoreGraphics.framework */; };
@@ -15,12 +17,14 @@
1517
DCAF789014E115EB00948273 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DCAF788F14E115EB00948273 /* AppDelegate.m */; };
1618
DCAF789314E115EC00948273 /* MainStoryboard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DCAF789114E115EC00948273 /* MainStoryboard.storyboard */; };
1719
DCAF789614E115EC00948273 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCAF789514E115EC00948273 /* ViewController.m */; };
18-
DCAF78A014E145FC00948273 /* BadgeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = DCAF789C14E145FB00948273 /* BadgeTableViewCell.m */; };
19-
DCAF78A114E145FC00948273 /* BadgeLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = DCAF789F14E145FC00948273 /* BadgeLabel.m */; };
2020
DCAF78A314E147C400948273 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCAF78A214E147C400948273 /* QuartzCore.framework */; };
2121
/* End PBXBuildFile section */
2222

2323
/* Begin PBXFileReference section */
24+
DC9ACB4814EF7B0E00FBD432 /* BadgeLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BadgeLabel.h; sourceTree = SOURCE_ROOT; };
25+
DC9ACB4914EF7B0E00FBD432 /* BadgeLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BadgeLabel.m; sourceTree = SOURCE_ROOT; };
26+
DC9ACB4A14EF7B0E00FBD432 /* BadgeTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BadgeTableViewCell.h; sourceTree = SOURCE_ROOT; };
27+
DC9ACB4B14EF7B0E00FBD432 /* BadgeTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BadgeTableViewCell.m; sourceTree = SOURCE_ROOT; };
2428
DCAF787B14E115EB00948273 /* BadgeView.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BadgeView.app; sourceTree = BUILT_PRODUCTS_DIR; };
2529
DCAF787F14E115EB00948273 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
2630
DCAF788114E115EB00948273 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@@ -34,10 +38,6 @@
3438
DCAF789214E115EC00948273 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/MainStoryboard.storyboard; sourceTree = "<group>"; };
3539
DCAF789414E115EC00948273 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
3640
DCAF789514E115EC00948273 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
37-
DCAF789C14E145FB00948273 /* BadgeTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BadgeTableViewCell.m; sourceTree = "<group>"; };
38-
DCAF789D14E145FB00948273 /* BadgeTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BadgeTableViewCell.h; sourceTree = "<group>"; };
39-
DCAF789E14E145FB00948273 /* BadgeLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BadgeLabel.h; sourceTree = "<group>"; };
40-
DCAF789F14E145FC00948273 /* BadgeLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BadgeLabel.m; sourceTree = "<group>"; };
4141
DCAF78A214E147C400948273 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
4242
/* End PBXFileReference section */
4343

@@ -87,10 +87,10 @@
8787
DCAF788514E115EB00948273 /* BadgeView */ = {
8888
isa = PBXGroup;
8989
children = (
90-
DCAF789E14E145FB00948273 /* BadgeLabel.h */,
91-
DCAF789F14E145FC00948273 /* BadgeLabel.m */,
92-
DCAF789D14E145FB00948273 /* BadgeTableViewCell.h */,
93-
DCAF789C14E145FB00948273 /* BadgeTableViewCell.m */,
90+
DC9ACB4814EF7B0E00FBD432 /* BadgeLabel.h */,
91+
DC9ACB4914EF7B0E00FBD432 /* BadgeLabel.m */,
92+
DC9ACB4A14EF7B0E00FBD432 /* BadgeTableViewCell.h */,
93+
DC9ACB4B14EF7B0E00FBD432 /* BadgeTableViewCell.m */,
9494
DCAF789414E115EC00948273 /* ViewController.h */,
9595
DCAF789514E115EC00948273 /* ViewController.m */,
9696
DCAF788E14E115EB00948273 /* AppDelegate.h */,
@@ -178,8 +178,8 @@
178178
DCAF788C14E115EB00948273 /* main.m in Sources */,
179179
DCAF789014E115EB00948273 /* AppDelegate.m in Sources */,
180180
DCAF789614E115EC00948273 /* ViewController.m in Sources */,
181-
DCAF78A014E145FC00948273 /* BadgeTableViewCell.m in Sources */,
182-
DCAF78A114E145FC00948273 /* BadgeLabel.m in Sources */,
181+
DC9ACB4C14EF7B0E00FBD432 /* BadgeLabel.m in Sources */,
182+
DC9ACB4D14EF7B0E00FBD432 /* BadgeTableViewCell.m in Sources */,
183183
);
184184
runOnlyForDeploymentPostprocessing = 0;
185185
};

0 commit comments

Comments
 (0)