Skip to content

Commit b01441a

Browse files
committed
Added the plane sub class of CameraViewController.
1 parent d425733 commit b01441a

File tree

5 files changed

+1661
-1361
lines changed

5 files changed

+1661
-1361
lines changed

cv.xcodeproj/project.pbxproj

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
14311C1D13617C2300C0C593 /* MainWindow-iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 14311C1B13617C2300C0C593 /* MainWindow-iPad.xib */; };
2020
1443574013650BBF004CC7AA /* BinarizedCameraViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1443573F13650BBF004CC7AA /* BinarizedCameraViewController.m */; };
2121
1489D1621369001800C061B7 /* CameraViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1489D1611369001800C061B7 /* CameraViewController.m */; };
22+
1489D169136903E500C061B7 /* NormalCameraViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1489D168136903E500C061B7 /* NormalCameraViewController.m */; };
2223
14975FC613653CBA00F41B08 /* QuartzHelpLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = 14975FC313653CBA00F41B08 /* QuartzHelpLibrary.m */; };
2324
14975FC713653CBA00F41B08 /* UIImage+pixel.m in Sources */ = {isa = PBXBuildFile; fileRef = 14975FC513653CBA00F41B08 /* UIImage+pixel.m */; };
2425
14B377941365BD6200738C9C /* icon114x114.png in Resources */ = {isa = PBXBuildFile; fileRef = 14B377911365BD6200738C9C /* icon114x114.png */; };
@@ -50,10 +51,12 @@
5051
14311BFC1361788700C0C593 /* cvViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = cvViewController.m; sourceTree = "<group>"; };
5152
14311BFF1361788700C0C593 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/cvViewController.xib; sourceTree = "<group>"; };
5253
14311C1C13617C2300C0C593 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = "en.lproj/MainWindow-iPad.xib"; sourceTree = "<group>"; };
53-
1443573E13650BBF004CC7AA /* BinarizedCameraViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; path = BinarizedCameraViewController.h; sourceTree = "<group>"; };
54+
1443573E13650BBF004CC7AA /* BinarizedCameraViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BinarizedCameraViewController.h; sourceTree = "<group>"; };
5455
1443573F13650BBF004CC7AA /* BinarizedCameraViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BinarizedCameraViewController.m; sourceTree = "<group>"; };
5556
1489D1601369001800C061B7 /* CameraViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CameraViewController.h; sourceTree = SOURCE_ROOT; };
5657
1489D1611369001800C061B7 /* CameraViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CameraViewController.m; sourceTree = SOURCE_ROOT; };
58+
1489D167136903E500C061B7 /* NormalCameraViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NormalCameraViewController.h; sourceTree = "<group>"; };
59+
1489D168136903E500C061B7 /* NormalCameraViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NormalCameraViewController.m; sourceTree = "<group>"; };
5760
14975FC213653CBA00F41B08 /* QuartzHelpLibrary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QuartzHelpLibrary.h; path = "../../Quartz-Help-Library/QuartzHelpLibrary.h"; sourceTree = "<group>"; };
5861
14975FC313653CBA00F41B08 /* QuartzHelpLibrary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = QuartzHelpLibrary.m; path = "../../Quartz-Help-Library/QuartzHelpLibrary.m"; sourceTree = "<group>"; };
5962
14975FC413653CBA00F41B08 /* UIImage+pixel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImage+pixel.h"; path = "../../Quartz-Help-Library/UIImage+pixel.h"; sourceTree = "<group>"; };
@@ -156,6 +159,8 @@
156159
1489D1631369002F00C061B7 /* Test ViewControllers */ = {
157160
isa = PBXGroup;
158161
children = (
162+
1489D167136903E500C061B7 /* NormalCameraViewController.h */,
163+
1489D168136903E500C061B7 /* NormalCameraViewController.m */,
159164
1443573E13650BBF004CC7AA /* BinarizedCameraViewController.h */,
160165
1443573F13650BBF004CC7AA /* BinarizedCameraViewController.m */,
161166
);
@@ -271,6 +276,7 @@
271276
14975FC613653CBA00F41B08 /* QuartzHelpLibrary.m in Sources */,
272277
14975FC713653CBA00F41B08 /* UIImage+pixel.m in Sources */,
273278
1489D1621369001800C061B7 /* CameraViewController.m in Sources */,
279+
1489D169136903E500C061B7 /* NormalCameraViewController.m in Sources */,
274280
);
275281
runOnlyForDeploymentPostprocessing = 0;
276282
};

0 commit comments

Comments
 (0)