Skip to content

Commit 42290b5

Browse files
committed
Fix all warnings (mostly add iPhone 5 images)
1 parent 3ce169b commit 42290b5

File tree

77 files changed

+237
-1203
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+237
-1203
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.idea
2+
project.xcworkspace

ch03/AssocRef/AssocRef.xcodeproj/project.pbxproj

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
FB2406C214212AA30092C720 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FB2406C114212AA30092C720 /* AppDelegate.m */; };
1616
FB2406C514212AA30092C720 /* MainStoryboard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FB2406C314212AA30092C720 /* MainStoryboard.storyboard */; };
1717
FB2406C814212AA30092C720 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FB2406C714212AA30092C720 /* ViewController.m */; };
18+
FB35F1201641969F003F59CA /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = FB35F11F1641969F003F59CA /* [email protected] */; };
1819
/* End PBXBuildFile section */
1920

2021
/* Begin PBXFileReference section */
@@ -31,6 +32,7 @@
3132
FB2406C414212AA30092C720 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/MainStoryboard.storyboard; sourceTree = "<group>"; };
3233
FB2406C614212AA30092C720 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
3334
FB2406C714212AA30092C720 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ViewController.m; path = AssocRef/ViewController.m; sourceTree = "<group>"; };
35+
FB35F11F1641969F003F59CA /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
3436
/* End PBXFileReference section */
3537

3638
/* Begin PBXFrameworksBuildPhase section */
@@ -50,6 +52,7 @@
5052
FB2406A214212AA20092C720 = {
5153
isa = PBXGroup;
5254
children = (
55+
FB35F11F1641969F003F59CA /* [email protected] */,
5356
FB2406C714212AA30092C720 /* ViewController.m */,
5457
FB2406B714212AA30092C720 /* AssocRef */,
5558
FB2406B014212AA30092C720 /* Frameworks */,
@@ -150,6 +153,7 @@
150153
files = (
151154
FB2406BC14212AA30092C720 /* InfoPlist.strings in Resources */,
152155
FB2406C514212AA30092C720 /* MainStoryboard.storyboard in Resources */,
156+
FB35F1201641969F003F59CA /* [email protected] in Resources */,
153157
);
154158
runOnlyForDeploymentPostprocessing = 0;
155159
};

ch03/AssocRef/[email protected]

18.2 KB
Loading
18.2 KB
Loading

ch04/ObserverTrampoline/ObserverTrampoline.xcodeproj/project.pbxproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
FB1000D91417E41600431287 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1000D81417E41600431287 /* ViewController.m */; };
1919
FB1000E11417E46B00431287 /* RNObserverManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1000E01417E46B00431287 /* RNObserverManager.m */; };
2020
FB2A1C77141911BB004303E7 /* RNMainThreadTrampoline.m in Sources */ = {isa = PBXBuildFile; fileRef = FB2A1C76141911BB004303E7 /* RNMainThreadTrampoline.m */; };
21+
FB5DB1F7164196B1004448BD /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = FB5DB1F6164196B1004448BD /* [email protected] */; };
2122
/* End PBXBuildFile section */
2223

2324
/* Begin PBXFileReference section */
@@ -35,10 +36,11 @@
3536
FB1000D51417E41600431287 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/MainStoryboard_iPad.storyboard; sourceTree = "<group>"; };
3637
FB1000D71417E41600431287 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
3738
FB1000D81417E41600431287 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
38-
FB1000DF1417E46B00431287 /* RNObserverManager.h */ = {isa = PBXFileReference; fileEncoding = 4; path = RNObserverManager.h; sourceTree = "<group>"; };
39+
FB1000DF1417E46B00431287 /* RNObserverManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNObserverManager.h; sourceTree = "<group>"; };
3940
FB1000E01417E46B00431287 /* RNObserverManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNObserverManager.m; sourceTree = "<group>"; };
4041
FB2A1C75141911BB004303E7 /* RNMainThreadTrampoline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNMainThreadTrampoline.h; sourceTree = "<group>"; };
4142
FB2A1C76141911BB004303E7 /* RNMainThreadTrampoline.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNMainThreadTrampoline.m; sourceTree = "<group>"; };
43+
FB5DB1F6164196B1004448BD /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
4244
/* End PBXFileReference section */
4345

4446
/* Begin PBXFrameworksBuildPhase section */
@@ -58,6 +60,7 @@
5860
FB1000B01417E41500431287 = {
5961
isa = PBXGroup;
6062
children = (
63+
FB5DB1F6164196B1004448BD /* [email protected] */,
6164
FB1000DF1417E46B00431287 /* RNObserverManager.h */,
6265
FB1000E01417E46B00431287 /* RNObserverManager.m */,
6366
FB2A1C75141911BB004303E7 /* RNMainThreadTrampoline.h */,
@@ -164,6 +167,7 @@
164167
FB1000CA1417E41500431287 /* InfoPlist.strings in Resources */,
165168
FB1000D31417E41500431287 /* MainStoryboard_iPhone.storyboard in Resources */,
166169
FB1000D61417E41600431287 /* MainStoryboard_iPad.storyboard in Resources */,
170+
FB5DB1F7164196B1004448BD /* [email protected] in Resources */,
167171
);
168172
runOnlyForDeploymentPostprocessing = 0;
169173
};
18.2 KB
Loading

ch06/NonRepeatingCellsExample/NonRepeatingCellsExample.xcodeproj/project.pbxproj

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
ABBFBD6214035B4A00A37E50 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = ABBFBD6014035B4A00A37E50 /* MainWindow.xib */; };
2020
ABBFBD6514035B4A00A37E50 /* NonRepeatingCellsExampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBFBD6414035B4A00A37E50 /* NonRepeatingCellsExampleViewController.m */; };
2121
ABBFBD6814035B4A00A37E50 /* NonRepeatingCellsExampleViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = ABBFBD6614035B4A00A37E50 /* NonRepeatingCellsExampleViewController.xib */; };
22+
FB829197164196C700B2959C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = FB829196164196C700B2959C /* [email protected] */; };
2223
/* End PBXBuildFile section */
2324

2425
/* Begin PBXFileReference section */
@@ -42,6 +43,7 @@
4243
ABBFBD6314035B4A00A37E50 /* NonRepeatingCellsExampleViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonRepeatingCellsExampleViewController.h; sourceTree = "<group>"; };
4344
ABBFBD6414035B4A00A37E50 /* NonRepeatingCellsExampleViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NonRepeatingCellsExampleViewController.m; sourceTree = "<group>"; };
4445
ABBFBD6714035B4A00A37E50 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/NonRepeatingCellsExampleViewController.xib; sourceTree = "<group>"; };
46+
FB829196164196C700B2959C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
4547
/* End PBXFileReference section */
4648

4749
/* Begin PBXFrameworksBuildPhase section */
@@ -61,6 +63,7 @@
6163
ABBFBD3F14035B4900A37E50 = {
6264
isa = PBXGroup;
6365
children = (
66+
FB829196164196C700B2959C /* [email protected] */,
6467
ABBFBD5414035B4A00A37E50 /* NonRepeatingCellsExample */,
6568
ABBFBD4D14035B4A00A37E50 /* Frameworks */,
6669
ABBFBD4B14035B4900A37E50 /* Products */,
@@ -169,6 +172,7 @@
169172
ABBFBD5914035B4A00A37E50 /* InfoPlist.strings in Resources */,
170173
ABBFBD6214035B4A00A37E50 /* MainWindow.xib in Resources */,
171174
ABBFBD6814035B4A00A37E50 /* NonRepeatingCellsExampleViewController.xib in Resources */,
175+
FB829197164196C700B2959C /* [email protected] in Resources */,
172176
);
173177
runOnlyForDeploymentPostprocessing = 0;
174178
};
18.2 KB
Loading

ch06/TableViewPerformance/TableViewPerformance.xcodeproj/project.pbxproj

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
ABBFBD7014035D2900A37E50 /* CustomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBFBD6F14035D2900A37E50 /* CustomCell.m */; };
2222
ABBFBD7214035D3500A37E50 /* CustomCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = ABBFBD7114035D3500A37E50 /* CustomCell.xib */; };
2323
ABF82F2F1604515F00A3B8DF /* iOS6.png in Resources */ = {isa = PBXBuildFile; fileRef = ABF82F2E1604515F00A3B8DF /* iOS6.png */; };
24+
FBC6F27B164196EC00AFC74F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = FBC6F27A164196EC00AFC74F /* [email protected] */; };
2425
/* End PBXBuildFile section */
2526

2627
/* Begin PBXFileReference section */
@@ -46,6 +47,7 @@
4647
ABBFBD6F14035D2900A37E50 /* CustomCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomCell.m; sourceTree = "<group>"; };
4748
ABBFBD7114035D3500A37E50 /* CustomCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CustomCell.xib; sourceTree = "<group>"; };
4849
ABF82F2E1604515F00A3B8DF /* iOS6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = iOS6.png; sourceTree = "<group>"; };
50+
FBC6F27A164196EC00AFC74F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
4951
/* End PBXFileReference section */
5052

5153
/* Begin PBXFrameworksBuildPhase section */
@@ -65,6 +67,7 @@
6567
ABBFBD3F14035B4900A37E50 = {
6668
isa = PBXGroup;
6769
children = (
70+
FBC6F27A164196EC00AFC74F /* [email protected] */,
6871
ABBFBD5414035B4A00A37E50 /* TableViewPerformance */,
6972
ABBFBD4D14035B4A00A37E50 /* Frameworks */,
7073
ABBFBD4B14035B4900A37E50 /* Products */,
@@ -177,6 +180,7 @@
177180
ABBFBD6814035B4A00A37E50 /* TableViewPerformanceViewController.xib in Resources */,
178181
ABBFBD7214035D3500A37E50 /* CustomCell.xib in Resources */,
179182
ABF82F2F1604515F00A3B8DF /* iOS6.png in Resources */,
183+
FBC6F27B164196EC00AFC74F /* [email protected] in Resources */,
180184
);
181185
runOnlyForDeploymentPostprocessing = 0;
182186
};

ch07/CollectionViewDemo/CollectionViewDemo/MKPhotoCell.m

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//
88

99
#import "MKPhotoCell.h"
10+
#import <QuartzCore/QuartzCore.h>
1011

1112
@implementation MKPhotoCell
1213

ch07/CollectionViewDemo/CollectionViewDemo/MKViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ - (void)viewDidLoad
6060
[self.photoOrientation addObject:[NSNumber numberWithInt:PhotoOrientationPortrait]];
6161
}];
6262

63-
dispatch_async(dispatch_get_current_queue(), ^{
63+
dispatch_async(dispatch_get_main_queue(), ^{
6464

6565
self.photosList = photosArray;
6666
[self.collectionView reloadData];

ch08/BlurryText/BlurryText.xcodeproj/project.pbxproj

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
FB1BBF1316419850002140CF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = FB1BBF1216419850002140CF /* [email protected] */; };
1011
FB3A3CDE1426A3DB00F2ED3E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB3A3CDD1426A3DB00F2ED3E /* UIKit.framework */; };
1112
FB3A3CE01426A3DB00F2ED3E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB3A3CDF1426A3DB00F2ED3E /* Foundation.framework */; };
1213
FB3A3CE21426A3DB00F2ED3E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB3A3CE11426A3DB00F2ED3E /* CoreGraphics.framework */; };
@@ -18,6 +19,7 @@
1819
/* End PBXBuildFile section */
1920

2021
/* Begin PBXFileReference section */
22+
FB1BBF1216419850002140CF /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
2123
FB3A3CD91426A3DB00F2ED3E /* BlurryText.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BlurryText.app; sourceTree = BUILT_PRODUCTS_DIR; };
2224
FB3A3CDD1426A3DB00F2ED3E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
2325
FB3A3CDF1426A3DB00F2ED3E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@@ -50,6 +52,7 @@
5052
FB3A3CCE1426A3DB00F2ED3E = {
5153
isa = PBXGroup;
5254
children = (
55+
FB1BBF1216419850002140CF /* [email protected] */,
5356
FB3A3CE31426A3DB00F2ED3E /* BlurryText */,
5457
FB3A3CDC1426A3DB00F2ED3E /* Frameworks */,
5558
FB3A3CDA1426A3DB00F2ED3E /* Products */,
@@ -124,7 +127,7 @@
124127
FB3A3CD01426A3DB00F2ED3E /* Project object */ = {
125128
isa = PBXProject;
126129
attributes = {
127-
LastUpgradeCheck = 0420;
130+
LastUpgradeCheck = 0450;
128131
};
129132
buildConfigurationList = FB3A3CD31426A3DB00F2ED3E /* Build configuration list for PBXProject "BlurryText" */;
130133
compatibilityVersion = "Xcode 3.2";
@@ -150,6 +153,7 @@
150153
files = (
151154
FB3A3CE81426A3DB00F2ED3E /* InfoPlist.strings in Resources */,
152155
FB3A3CF11426A3DB00F2ED3E /* MainStoryboard.storyboard in Resources */,
156+
FB1BBF1316419850002140CF /* [email protected] in Resources */,
153157
);
154158
runOnlyForDeploymentPostprocessing = 0;
155159
};
@@ -274,6 +278,7 @@
274278
FB3A3CF91426A3DB00F2ED3E /* Release */,
275279
);
276280
defaultConfigurationIsVisible = 0;
281+
defaultConfigurationName = Release;
277282
};
278283
/* End XCConfigurationList section */
279284
};

ch08/BlurryText/[email protected]

18.2 KB
Loading

ch08/Drawing/[email protected]

18.2 KB
Loading

ch08/Drawing/Drawing.xcodeproj/project.pbxproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
FB1BBF1816419863002140CF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = FB1BBF1716419863002140CF /* [email protected] */; };
1011
FB35E2D713BA633B0040212F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB35E2D613BA633B0040212F /* UIKit.framework */; };
1112
FB35E2D913BA633B0040212F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB35E2D813BA633B0040212F /* Foundation.framework */; };
1213
FB35E2DB13BA633B0040212F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB35E2DA13BA633B0040212F /* CoreGraphics.framework */; };
@@ -21,6 +22,7 @@
2122
/* End PBXBuildFile section */
2223

2324
/* Begin PBXFileReference section */
25+
FB1BBF1716419863002140CF /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
2426
FB35E2D213BA633B0040212F /* Drawing.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Drawing.app; sourceTree = BUILT_PRODUCTS_DIR; };
2527
FB35E2D613BA633B0040212F /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
2628
FB35E2D813BA633B0040212F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@@ -57,6 +59,7 @@
5759
FB35E2C713BA633B0040212F = {
5860
isa = PBXGroup;
5961
children = (
62+
FB1BBF1716419863002140CF /* [email protected] */,
6063
FB35E2F913BA9F020040212F /* MYView.h */,
6164
FB35E2FA13BA9F020040212F /* MYView.m */,
6265
FB35E2F713BA7E470040212F /* CoreImage.framework */,
@@ -134,7 +137,7 @@
134137
FB35E2C913BA633B0040212F /* Project object */ = {
135138
isa = PBXProject;
136139
attributes = {
137-
LastUpgradeCheck = 0420;
140+
LastUpgradeCheck = 0450;
138141
};
139142
buildConfigurationList = FB35E2CC13BA633B0040212F /* Build configuration list for PBXProject "Drawing" */;
140143
compatibilityVersion = "Xcode 3.2";
@@ -161,6 +164,7 @@
161164
FB35E2E113BA633B0040212F /* InfoPlist.strings in Resources */,
162165
FB35E2EC13BA633B0040212F /* DrawingViewController.h in Resources */,
163166
FB76A49614269E4A00C31B11 /* MainStoryboard.storyboard in Resources */,
167+
FB1BBF1816419863002140CF /* [email protected] in Resources */,
164168
);
165169
runOnlyForDeploymentPostprocessing = 0;
166170
};

ch08/Graph/[email protected]

18.2 KB
Loading

ch08/Graph/Graph.xcodeproj/project.pbxproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
FB1BBF1F164198C2002140CF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = FB1BBF1E164198C2002140CF /* [email protected] */; };
1011
FB423B2A13C506530009C21A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB423B2913C506530009C21A /* UIKit.framework */; };
1112
FB423B2C13C506530009C21A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB423B2B13C506530009C21A /* Foundation.framework */; };
1213
FB423B2E13C506530009C21A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB423B2D13C506530009C21A /* CoreGraphics.framework */; };
@@ -20,6 +21,7 @@
2021
/* End PBXBuildFile section */
2122

2223
/* Begin PBXFileReference section */
24+
FB1BBF1E164198C2002140CF /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
2325
FB423B2513C506530009C21A /* Graph.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Graph.app; sourceTree = BUILT_PRODUCTS_DIR; };
2426
FB423B2913C506530009C21A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
2527
FB423B2B13C506530009C21A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@@ -54,6 +56,7 @@
5456
FB423B1A13C506530009C21A = {
5557
isa = PBXGroup;
5658
children = (
59+
FB1BBF1E164198C2002140CF /* [email protected] */,
5760
FB423B4A13C506820009C21A /* GraphView.h */,
5861
FB423B4B13C506820009C21A /* GraphView.m */,
5962
FB423B2F13C506530009C21A /* Graph */,
@@ -130,7 +133,7 @@
130133
FB423B1C13C506530009C21A /* Project object */ = {
131134
isa = PBXProject;
132135
attributes = {
133-
LastUpgradeCheck = 0420;
136+
LastUpgradeCheck = 0450;
134137
};
135138
buildConfigurationList = FB423B1F13C506530009C21A /* Build configuration list for PBXProject "Graph" */;
136139
compatibilityVersion = "Xcode 3.2";
@@ -157,6 +160,7 @@
157160
FB423B3413C506530009C21A /* InfoPlist.strings in Resources */,
158161
FB423B3D13C506530009C21A /* MainStoryboard.storyboard in Resources */,
159162
FB423B3F13C506530009C21A /* GraphViewController.h in Resources */,
163+
FB1BBF1F164198C2002140CF /* [email protected] in Resources */,
160164
);
161165
runOnlyForDeploymentPostprocessing = 0;
162166
};

ch08/Layer/[email protected]

18.2 KB
Loading

ch08/Layer/Layer.xcodeproj/project.pbxproj

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
FB1BBF25164198E1002140CF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = FB1BBF24164198E1002140CF /* [email protected] */; };
1011
FBA9F0A51426A20C005748E3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBA9F0A41426A20C005748E3 /* UIKit.framework */; };
1112
FBA9F0A71426A20C005748E3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBA9F0A61426A20C005748E3 /* Foundation.framework */; };
1213
FBA9F0A91426A20C005748E3 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBA9F0A81426A20C005748E3 /* CoreGraphics.framework */; };
@@ -19,6 +20,7 @@
1920
/* End PBXBuildFile section */
2021

2122
/* Begin PBXFileReference section */
23+
FB1BBF24164198E1002140CF /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
2224
FBA9F0A01426A20C005748E3 /* Layer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Layer.app; sourceTree = BUILT_PRODUCTS_DIR; };
2325
FBA9F0A41426A20C005748E3 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
2426
FBA9F0A61426A20C005748E3 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@@ -53,6 +55,7 @@
5355
FBA9F0951426A20C005748E3 = {
5456
isa = PBXGroup;
5557
children = (
58+
FB1BBF24164198E1002140CF /* [email protected] */,
5659
FBF62EAA1426A25A00804CA5 /* LayerView.h */,
5760
FBF62EAB1426A25A00804CA5 /* LayerView.m */,
5861
FBA9F0AA1426A20C005748E3 /* Layer */,
@@ -155,6 +158,7 @@
155158
files = (
156159
FBA9F0AF1426A20C005748E3 /* InfoPlist.strings in Resources */,
157160
FBA9F0B81426A20C005748E3 /* MainStoryboard.storyboard in Resources */,
161+
FB1BBF25164198E1002140CF /* [email protected] in Resources */,
158162
);
159163
runOnlyForDeploymentPostprocessing = 0;
160164
};

ch08/Paths/[email protected]

18.2 KB
Loading

0 commit comments

Comments
 (0)