Skip to content

Commit f130551

Browse files
committed
- Core classes moved to a separate folder, it will be easier to include GLTableCollectionView in another project
1 parent b84493a commit f130551

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

GLTableCollectionView.xcodeproj/project.pbxproj

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

99
/* Begin PBXBuildFile section */
10-
745E87FE1DE74BC800788EC7 /* GLIndexedCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 745E87FC1DE74BC800788EC7 /* GLIndexedCollectionViewCell.swift */; };
11-
745E87FF1DE74BC800788EC7 /* GLIndexedCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 745E87FD1DE74BC800788EC7 /* GLIndexedCollectionViewCell.xib */; };
10+
742CE82E1E099064000ACFB6 /* GLTableCollectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 742CE82D1E099064000ACFB6 /* GLTableCollectionViewController.swift */; };
11+
742CE8301E099070000ACFB6 /* GLCollectionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 742CE82F1E099070000ACFB6 /* GLCollectionTableViewCell.swift */; };
12+
742CE8321E099077000ACFB6 /* GLIndexedCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 742CE8311E099077000ACFB6 /* GLIndexedCollectionViewCell.swift */; };
13+
742CE8341E09907D000ACFB6 /* GLIndexedCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 742CE8331E09907D000ACFB6 /* GLIndexedCollectionViewCell.xib */; };
1214
747CF8FD1DE6EB010051A5FF /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 747CF8FC1DE6EB010051A5FF /* AppDelegate.swift */; };
1315
747CF9021DE6EB010051A5FF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 747CF9001DE6EB010051A5FF /* Main.storyboard */; };
1416
747CF9041DE6EB010051A5FF /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 747CF9031DE6EB010051A5FF /* Assets.xcassets */; };
1517
747CF9071DE6EB010051A5FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 747CF9051DE6EB010051A5FF /* LaunchScreen.storyboard */; };
1618
747CF9121DE6EB010051A5FF /* GLTableCollectionViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 747CF9111DE6EB010051A5FF /* GLTableCollectionViewTests.swift */; };
17-
747CF91D1DE6EBFF0051A5FF /* GLTableCollectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 747CF91C1DE6EBFF0051A5FF /* GLTableCollectionViewController.swift */; };
18-
747CF91F1DE6ECB60051A5FF /* GLCollectionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 747CF91E1DE6ECB60051A5FF /* GLCollectionTableViewCell.swift */; };
1919
/* End PBXBuildFile section */
2020

2121
/* Begin PBXContainerItemProxy section */
@@ -29,8 +29,10 @@
2929
/* End PBXContainerItemProxy section */
3030

3131
/* Begin PBXFileReference section */
32-
745E87FC1DE74BC800788EC7 /* GLIndexedCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GLIndexedCollectionViewCell.swift; sourceTree = "<group>"; };
33-
745E87FD1DE74BC800788EC7 /* GLIndexedCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GLIndexedCollectionViewCell.xib; sourceTree = "<group>"; };
32+
742CE82D1E099064000ACFB6 /* GLTableCollectionViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = GLTableCollectionViewController.swift; path = Classes/GLTableCollectionViewController.swift; sourceTree = SOURCE_ROOT; };
33+
742CE82F1E099070000ACFB6 /* GLCollectionTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = GLCollectionTableViewCell.swift; path = Classes/GLCollectionTableViewCell.swift; sourceTree = SOURCE_ROOT; };
34+
742CE8311E099077000ACFB6 /* GLIndexedCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = GLIndexedCollectionViewCell.swift; path = Classes/GLIndexedCollectionViewCell.swift; sourceTree = SOURCE_ROOT; };
35+
742CE8331E09907D000ACFB6 /* GLIndexedCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = GLIndexedCollectionViewCell.xib; path = Classes/GLIndexedCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
3436
747CF8F91DE6EB010051A5FF /* GLTableCollectionView.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GLTableCollectionView.app; sourceTree = BUILT_PRODUCTS_DIR; };
3537
747CF8FC1DE6EB010051A5FF /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
3638
747CF9011DE6EB010051A5FF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
@@ -40,8 +42,6 @@
4042
747CF90D1DE6EB010051A5FF /* GLTableCollectionViewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = GLTableCollectionViewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
4143
747CF9111DE6EB010051A5FF /* GLTableCollectionViewTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GLTableCollectionViewTests.swift; sourceTree = "<group>"; };
4244
747CF9131DE6EB010051A5FF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
43-
747CF91C1DE6EBFF0051A5FF /* GLTableCollectionViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GLTableCollectionViewController.swift; sourceTree = "<group>"; };
44-
747CF91E1DE6ECB60051A5FF /* GLCollectionTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GLCollectionTableViewCell.swift; sourceTree = "<group>"; };
4545
/* End PBXFileReference section */
4646

4747
/* Begin PBXFrameworksBuildPhase section */
@@ -84,13 +84,13 @@
8484
isa = PBXGroup;
8585
children = (
8686
747CF8FC1DE6EB010051A5FF /* AppDelegate.swift */,
87-
747CF91C1DE6EBFF0051A5FF /* GLTableCollectionViewController.swift */,
88-
747CF91E1DE6ECB60051A5FF /* GLCollectionTableViewCell.swift */,
89-
745E87FC1DE74BC800788EC7 /* GLIndexedCollectionViewCell.swift */,
90-
745E87FD1DE74BC800788EC7 /* GLIndexedCollectionViewCell.xib */,
87+
742CE82D1E099064000ACFB6 /* GLTableCollectionViewController.swift */,
88+
742CE82F1E099070000ACFB6 /* GLCollectionTableViewCell.swift */,
89+
742CE8311E099077000ACFB6 /* GLIndexedCollectionViewCell.swift */,
90+
742CE8331E09907D000ACFB6 /* GLIndexedCollectionViewCell.xib */,
9191
747CF9001DE6EB010051A5FF /* Main.storyboard */,
92-
747CF9031DE6EB010051A5FF /* Assets.xcassets */,
9392
747CF9051DE6EB010051A5FF /* LaunchScreen.storyboard */,
93+
747CF9031DE6EB010051A5FF /* Assets.xcassets */,
9494
747CF9081DE6EB010051A5FF /* Info.plist */,
9595
);
9696
path = GLTableCollectionView;
@@ -190,8 +190,8 @@
190190
files = (
191191
747CF9071DE6EB010051A5FF /* LaunchScreen.storyboard in Resources */,
192192
747CF9041DE6EB010051A5FF /* Assets.xcassets in Resources */,
193+
742CE8341E09907D000ACFB6 /* GLIndexedCollectionViewCell.xib in Resources */,
193194
747CF9021DE6EB010051A5FF /* Main.storyboard in Resources */,
194-
745E87FF1DE74BC800788EC7 /* GLIndexedCollectionViewCell.xib in Resources */,
195195
);
196196
runOnlyForDeploymentPostprocessing = 0;
197197
};
@@ -209,10 +209,10 @@
209209
isa = PBXSourcesBuildPhase;
210210
buildActionMask = 2147483647;
211211
files = (
212-
747CF91D1DE6EBFF0051A5FF /* GLTableCollectionViewController.swift in Sources */,
213-
745E87FE1DE74BC800788EC7 /* GLIndexedCollectionViewCell.swift in Sources */,
214-
747CF91F1DE6ECB60051A5FF /* GLCollectionTableViewCell.swift in Sources */,
212+
742CE8301E099070000ACFB6 /* GLCollectionTableViewCell.swift in Sources */,
213+
742CE82E1E099064000ACFB6 /* GLTableCollectionViewController.swift in Sources */,
215214
747CF8FD1DE6EB010051A5FF /* AppDelegate.swift in Sources */,
215+
742CE8321E099077000ACFB6 /* GLIndexedCollectionViewCell.swift in Sources */,
216216
);
217217
runOnlyForDeploymentPostprocessing = 0;
218218
};

0 commit comments

Comments
 (0)