Skip to content

Commit 898f338

Browse files
committed
Move CategoryCollectionViewController to group
1 parent a03aaf1 commit 898f338

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

Math Challenge.xcodeproj/project.pbxproj

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/* Begin PBXBuildFile section */
1010
628B722EC73EFE1A29D44EA9 /* MultiplicationCategory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B791B2F97A6543B65BEB5 /* MultiplicationCategory.swift */; };
1111
628B7289D71985BE08E584F8 /* DivisionCategory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B7DAA309D48831C25427C /* DivisionCategory.swift */; };
12+
628B72C5FD357501157B0C16 /* CategoryCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 628B71CA98DE2A7D38C76346 /* CategoryCollectionViewCell.xib */; };
1213
628B74310B57EDB57F1BEA5C /* MathChallengeCategory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B746C5EBC06577C28BD09 /* MathChallengeCategory.swift */; };
1314
628B755953F2CFC346D132CB /* .editorconfig in Resources */ = {isa = PBXBuildFile; fileRef = 628B715EDE5998363FF59604 /* .editorconfig */; };
1415
628B7684D275C526D7EC3E3D /* Multiplication.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B78A2DAF6AA863A31D36F /* Multiplication.swift */; };
@@ -17,6 +18,8 @@
1718
628B79D8C849585571436F8F /* Division.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B758FE04B0B237A08CE04 /* Division.swift */; };
1819
628B7A432596C16056983967 /* Squares.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B7B27887CE8E0E7697315 /* Squares.swift */; };
1920
628B7BA76CB2D73326B7BEE9 /* AdditionCategory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B718372861E8829E97CC7 /* AdditionCategory.swift */; };
21+
628B7C27DDF71C525EC14D80 /* CategoryCollectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B7FF2153B9B334CC4BAD6 /* CategoryCollectionViewController.swift */; };
22+
628B7DA644C529E700C5DD66 /* CategoryCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B786C96681CF04CB40F21 /* CategoryCollectionViewCell.swift */; };
2023
628B7E656064AAA81A881837 /* IndexPath+section.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B74406100822ED5432C8F /* IndexPath+section.swift */; };
2124
628B7E7542A04DC2A97F34E7 /* SPHAIRCategory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B7A34EA707AE08B11051E /* SPHAIRCategory.swift */; };
2225
628B7E999EBF436CF7E14D83 /* Subtraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628B75B720296FD733E2D574 /* Subtraction.swift */; };
@@ -35,9 +38,6 @@
3538
8042DE4323635163008B1893 /* Addition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8042DE4023635163008B1893 /* Addition.swift */; };
3639
8042DE4423635163008B1893 /* MathChallengeGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8042DE4123635163008B1893 /* MathChallengeGenerator.swift */; };
3740
8042DE4523635163008B1893 /* SPHAIR.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8042DE4223635163008B1893 /* SPHAIR.swift */; };
38-
80950C43238F075F005BFD5C /* CategoryCollectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80950C42238F075F005BFD5C /* CategoryCollectionViewController.swift */; };
39-
80950C4A238F0BE7005BFD5C /* CategoryCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80950C48238F0BE7005BFD5C /* CategoryCollectionViewCell.swift */; };
40-
80950C4B238F0BE7005BFD5C /* CategoryCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 80950C49238F0BE7005BFD5C /* CategoryCollectionViewCell.xib */; };
4141
8B66A7EA9D5EABC3A41772ED /* Pods_Math_ChallengeTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C24A697240B52CCCFFA4C1F /* Pods_Math_ChallengeTests.framework */; };
4242
A93CE40CDA0D1EAFD76E5192 /* Pods_Math_Challenge_Math_ChallengeUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F909BD5FA872845DCD5A81FF /* Pods_Math_Challenge_Math_ChallengeUITests.framework */; };
4343
C9C7E2149F3D9605423F5A76 /* Pods_Math_Challenge.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0E8DD3E723C6F2B894EA346 /* Pods_Math_Challenge.framework */; };
@@ -65,17 +65,20 @@
6565
628B71032E9B3557911337E6 /* MathChallengeUITile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MathChallengeUITile.swift; sourceTree = "<group>"; };
6666
628B715EDE5998363FF59604 /* .editorconfig */ = {isa = PBXFileReference; lastKnownFileType = file.editorrc; path = .editorconfig; sourceTree = "<group>"; };
6767
628B718372861E8829E97CC7 /* AdditionCategory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AdditionCategory.swift; sourceTree = "<group>"; };
68+
628B71CA98DE2A7D38C76346 /* CategoryCollectionViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CategoryCollectionViewCell.xib; sourceTree = "<group>"; };
6869
628B74406100822ED5432C8F /* IndexPath+section.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "IndexPath+section.swift"; sourceTree = "<group>"; };
6970
628B746C5EBC06577C28BD09 /* MathChallengeCategory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MathChallengeCategory.swift; sourceTree = "<group>"; };
7071
628B758FE04B0B237A08CE04 /* Division.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Division.swift; sourceTree = "<group>"; };
7172
628B75B720296FD733E2D574 /* Subtraction.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Subtraction.swift; sourceTree = "<group>"; };
73+
628B786C96681CF04CB40F21 /* CategoryCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryCollectionViewCell.swift; sourceTree = "<group>"; };
7274
628B78A2DAF6AA863A31D36F /* Multiplication.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Multiplication.swift; sourceTree = "<group>"; };
7375
628B791B2F97A6543B65BEB5 /* MultiplicationCategory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MultiplicationCategory.swift; sourceTree = "<group>"; };
7476
628B7A34EA707AE08B11051E /* SPHAIRCategory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SPHAIRCategory.swift; sourceTree = "<group>"; };
7577
628B7B27887CE8E0E7697315 /* Squares.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Squares.swift; sourceTree = "<group>"; };
7678
628B7DAA309D48831C25427C /* DivisionCategory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DivisionCategory.swift; sourceTree = "<group>"; };
7779
628B7E0386EC2C614E0135CB /* SquaresCategory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SquaresCategory.swift; sourceTree = "<group>"; };
7880
628B7E699E3A4E0044CA7594 /* SubtractionCategory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SubtractionCategory.swift; sourceTree = "<group>"; };
81+
628B7FF2153B9B334CC4BAD6 /* CategoryCollectionViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryCollectionViewController.swift; sourceTree = "<group>"; };
7982
62BB3F962A16257DD8828BEC /* Pods-Math Challenge.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Math Challenge.debug.xcconfig"; path = "Target Support Files/Pods-Math Challenge/Pods-Math Challenge.debug.xcconfig"; sourceTree = "<group>"; };
8083
8034B2712363520F00A282CD /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
8184
8042DDFD236350ED008B1893 /* Math Challenge.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Math Challenge.app"; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -98,9 +101,6 @@
98101
8042DE4023635163008B1893 /* Addition.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Addition.swift; sourceTree = "<group>"; };
99102
8042DE4123635163008B1893 /* MathChallengeGenerator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MathChallengeGenerator.swift; sourceTree = "<group>"; };
100103
8042DE4223635163008B1893 /* SPHAIR.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SPHAIR.swift; sourceTree = "<group>"; };
101-
80950C42238F075F005BFD5C /* CategoryCollectionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryCollectionViewController.swift; sourceTree = "<group>"; };
102-
80950C48238F0BE7005BFD5C /* CategoryCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryCollectionViewCell.swift; sourceTree = "<group>"; };
103-
80950C49238F0BE7005BFD5C /* CategoryCollectionViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CategoryCollectionViewCell.xib; sourceTree = "<group>"; };
104104
A9CE19E58062841DB23EA8AD /* Pods-Math ChallengeTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Math ChallengeTests.release.xcconfig"; path = "Target Support Files/Pods-Math ChallengeTests/Pods-Math ChallengeTests.release.xcconfig"; sourceTree = "<group>"; };
105105
B005E432DA92264B3EF969A3 /* Pods-Math Challenge.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Math Challenge.release.xcconfig"; path = "Target Support Files/Pods-Math Challenge/Pods-Math Challenge.release.xcconfig"; sourceTree = "<group>"; };
106106
BB34CC89C7A791281E56D17E /* Pods-Math Challenge-Math ChallengeUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Math Challenge-Math ChallengeUITests.debug.xcconfig"; path = "Target Support Files/Pods-Math Challenge-Math ChallengeUITests/Pods-Math Challenge-Math ChallengeUITests.debug.xcconfig"; sourceTree = "<group>"; };
@@ -151,6 +151,16 @@
151151
path = Pods;
152152
sourceTree = "<group>";
153153
};
154+
628B72714A021AB7F6E6B953 /* CategoryCollectionViewController */ = {
155+
isa = PBXGroup;
156+
children = (
157+
628B786C96681CF04CB40F21 /* CategoryCollectionViewCell.swift */,
158+
628B71CA98DE2A7D38C76346 /* CategoryCollectionViewCell.xib */,
159+
628B7FF2153B9B334CC4BAD6 /* CategoryCollectionViewController.swift */,
160+
);
161+
path = CategoryCollectionViewController;
162+
sourceTree = "<group>";
163+
};
154164
7BB7B16B49CC6E0AB2478C1A /* Frameworks */ = {
155165
isa = PBXGroup;
156166
children = (
@@ -197,13 +207,11 @@
197207
8034B2712363520F00A282CD /* Assets.xcassets */,
198208
8042DE3723635151008B1893 /* SceneDelegate.swift */,
199209
8042DE08236350ED008B1893 /* Main.storyboard */,
200-
80950C48238F0BE7005BFD5C /* CategoryCollectionViewCell.swift */,
201-
80950C49238F0BE7005BFD5C /* CategoryCollectionViewCell.xib */,
202-
80950C42238F075F005BFD5C /* CategoryCollectionViewController.swift */,
203210
8042DE0D236350EE008B1893 /* LaunchScreen.storyboard */,
204211
8042DE10236350EE008B1893 /* Info.plist */,
205212
8042DE3223635150008B1893 /* Math Challenge-Bridging-Header.h */,
206213
628B74406100822ED5432C8F /* IndexPath+section.swift */,
214+
628B72714A021AB7F6E6B953 /* CategoryCollectionViewController */,
207215
);
208216
path = "Math Challenge";
209217
sourceTree = "<group>";
@@ -365,11 +373,11 @@
365373
isa = PBXResourcesBuildPhase;
366374
buildActionMask = 2147483647;
367375
files = (
368-
80950C4B238F0BE7005BFD5C /* CategoryCollectionViewCell.xib in Resources */,
369376
8042DE0F236350EE008B1893 /* LaunchScreen.storyboard in Resources */,
370377
8034B2722363520F00A282CD /* Assets.xcassets in Resources */,
371378
8042DE0A236350ED008B1893 /* Main.storyboard in Resources */,
372379
628B755953F2CFC346D132CB /* .editorconfig in Resources */,
380+
628B72C5FD357501157B0C16 /* CategoryCollectionViewCell.xib in Resources */,
373381
);
374382
runOnlyForDeploymentPostprocessing = 0;
375383
};
@@ -501,7 +509,6 @@
501509
8042DE4423635163008B1893 /* MathChallengeGenerator.swift in Sources */,
502510
8042DE3E23635151008B1893 /* Challenge.swift in Sources */,
503511
8042DE3C23635151008B1893 /* MathChallengeCategoriesRegistry.swift in Sources */,
504-
80950C43238F075F005BFD5C /* CategoryCollectionViewController.swift in Sources */,
505512
8042DE4323635163008B1893 /* Addition.swift in Sources */,
506513
8042DE3B23635151008B1893 /* AppDelegate.swift in Sources */,
507514
8042DE3923635151008B1893 /* MasterViewController.swift in Sources */,
@@ -513,14 +520,15 @@
513520
628B7E999EBF436CF7E14D83 /* Subtraction.swift in Sources */,
514521
628B74310B57EDB57F1BEA5C /* MathChallengeCategory.swift in Sources */,
515522
628B7E7542A04DC2A97F34E7 /* SPHAIRCategory.swift in Sources */,
516-
80950C4A238F0BE7005BFD5C /* CategoryCollectionViewCell.swift in Sources */,
517523
628B7289D71985BE08E584F8 /* DivisionCategory.swift in Sources */,
518524
628B722EC73EFE1A29D44EA9 /* MultiplicationCategory.swift in Sources */,
519525
628B787DFCB381A2E641297E /* SquaresCategory.swift in Sources */,
520526
628B7BA76CB2D73326B7BEE9 /* AdditionCategory.swift in Sources */,
521527
628B7EF2B7D168A80D672A54 /* SubtractionCategory.swift in Sources */,
522528
628B7E656064AAA81A881837 /* IndexPath+section.swift in Sources */,
523529
628B779C4F37C7E02B88BD46 /* MathChallengeUITile.swift in Sources */,
530+
628B7DA644C529E700C5DD66 /* CategoryCollectionViewCell.swift in Sources */,
531+
628B7C27DDF71C525EC14D80 /* CategoryCollectionViewController.swift in Sources */,
524532
);
525533
runOnlyForDeploymentPostprocessing = 0;
526534
};

Math challenge/CategoryCollectionViewCell.swift renamed to Math challenge/CategoryCollectionViewController/CategoryCollectionViewCell.swift

File renamed without changes.

Math challenge/CategoryCollectionViewCell.xib renamed to Math challenge/CategoryCollectionViewController/CategoryCollectionViewCell.xib

File renamed without changes.

Math challenge/CategoryCollectionViewController.swift renamed to Math challenge/CategoryCollectionViewController/CategoryCollectionViewController.swift

File renamed without changes.

0 commit comments

Comments
 (0)