Skip to content
This repository was archived by the owner on Dec 5, 2022. It is now read-only.

Commit 26ef5e1

Browse files
committed
Add texture example
1 parent 00ada7e commit 26ef5e1

File tree

21 files changed

+779
-35
lines changed

21 files changed

+779
-35
lines changed

Example/DeepDiffDemo/DeepDiffDemo.xcodeproj/project.pbxproj

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
/* End PBXBuildFile section */
2222

2323
/* Begin PBXFileReference section */
24-
2364C5712044053D000018AB /* ASTableNodeExtension.swift */ = {isa = PBXFileReference; indentWidth = 2; lastKnownFileType = sourcecode.swift; path = ASTableNodeExtension.swift; sourceTree = "<group>"; tabWidth = 2; };
25-
2364C574204405A1000018AB /* TextureTableController.swift */ = {isa = PBXFileReference; indentWidth = 2; lastKnownFileType = sourcecode.swift; path = TextureTableController.swift; sourceTree = "<group>"; tabWidth = 2; };
26-
2364C576204405CC000018AB /* TableCellNode.swift */ = {isa = PBXFileReference; indentWidth = 2; lastKnownFileType = sourcecode.swift; path = TableCellNode.swift; sourceTree = "<group>"; tabWidth = 2; };
27-
2364C578204405DC000018AB /* RootNode.swift */ = {isa = PBXFileReference; indentWidth = 2; lastKnownFileType = sourcecode.swift; path = RootNode.swift; sourceTree = "<group>"; tabWidth = 2; };
2824
312A6379467401DAF6A566F0 /* Pods-DeepDiffDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DeepDiffDemo.debug.xcconfig"; path = "Target Support Files/Pods-DeepDiffDemo/Pods-DeepDiffDemo.debug.xcconfig"; sourceTree = "<group>"; };
2925
5545A1921B324B7D402E3AB6 /* Pods_DeepDiffDemo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DeepDiffDemo.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3026
9381C3F3F924D4469B231A2E /* Pods-DeepDiffDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DeepDiffDemo.release.xcconfig"; path = "Target Support Files/Pods-DeepDiffDemo/Pods-DeepDiffDemo.release.xcconfig"; sourceTree = "<group>"; };
@@ -56,17 +52,6 @@
5652
/* End PBXFrameworksBuildPhase section */
5753

5854
/* Begin PBXGroup section */
59-
2364C57320440579000018AB /* Texture */ = {
60-
isa = PBXGroup;
61-
children = (
62-
2364C5712044053D000018AB /* ASTableNodeExtension.swift */,
63-
2364C574204405A1000018AB /* TextureTableController.swift */,
64-
2364C576204405CC000018AB /* TableCellNode.swift */,
65-
2364C578204405DC000018AB /* RootNode.swift */,
66-
);
67-
path = Texture;
68-
sourceTree = "<group>";
69-
};
7055
7BCE04D5A9C7F9E9AFFB6967 /* Frameworks */ = {
7156
isa = PBXGroup;
7257
children = (
@@ -132,7 +117,6 @@
132117
D5C7F7581C3BCA1E008CDDBA /* Sources */ = {
133118
isa = PBXGroup;
134119
children = (
135-
2364C57320440579000018AB /* Texture */,
136120
D5C7F7591C3BCA1E008CDDBA /* AppDelegate.swift */,
137121
D5C7F75A1C3BCA1E008CDDBA /* CollectionViewController.swift */,
138122
D23B9F431FA92867008363A1 /* CollectionViewCell.swift */,

Example/DeepDiffDemo/DeepDiffDemo/Sources/AppDelegate.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
1717
collectionController.tabBarItem.image = UIImage(named: "collection")
1818
collectionController.title = "UICollectionView"
1919

20-
// let textureController = TextureTableController()
21-
// textureController.tabBarItem.image = UIImage(named: "table")
22-
// textureController.title = "ASTableNode"
23-
2420
let tabController = UITabBarController()
2521

2622
tabController.viewControllers = [
2723
UINavigationController(rootViewController: tableController),
28-
// UINavigationController(rootViewController: textureController),
2924
UINavigationController(rootViewController: collectionController)
3025
]
3126

Example/DeepDiffDemo/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ platform :ios, '9.0'
55
target 'DeepDiffDemo' do
66
pod 'DeepDiff', path: '../../'
77
pod 'Anchors'
8-
# pod 'Texture'
98
end
109

0 commit comments

Comments
 (0)