Skip to content

Commit

Permalink
CameraViewController initiated
Browse files Browse the repository at this point in the history
  • Loading branch information
jogendra committed Mar 20, 2018
1 parent b26a68f commit 589b811
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Phimpme.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
408F1A0E20596AC500BDC313 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 408F1A0D20596AC500BDC313 /* Assets.xcassets */; };
408F1A1120596AC500BDC313 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 408F1A0F20596AC500BDC313 /* LaunchScreen.storyboard */; };
40F899B72060F83700471ADF /* AccountsTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F899B62060F83700471ADF /* AccountsTableViewController.swift */; };
40F899B9206137B600471ADF /* CameraViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F899B8206137B600471ADF /* CameraViewController.swift */; };
781992384A2F3D6CA211A031 /* Pods_Phimpme.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F2CB302E579EA703C318C373 /* Pods_Phimpme.framework */; };
/* End PBXBuildFile section */

Expand All @@ -25,6 +26,7 @@
408F1A1020596AC500BDC313 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
408F1A1220596AC500BDC313 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
40F899B62060F83700471ADF /* AccountsTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountsTableViewController.swift; sourceTree = "<group>"; };
40F899B8206137B600471ADF /* CameraViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CameraViewController.swift; sourceTree = "<group>"; };
991E11AE5F3F3F3A820B0968 /* Pods-Phimpme.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Phimpme.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Phimpme/Pods-Phimpme.debug.xcconfig"; sourceTree = "<group>"; };
F2CB302E579EA703C318C373 /* Pods_Phimpme.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Phimpme.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FE33A7B2AAB0D992BB6E0FB7 /* Pods-Phimpme.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Phimpme.release.xcconfig"; path = "Pods/Target Support Files/Pods-Phimpme/Pods-Phimpme.release.xcconfig"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -78,6 +80,7 @@
408F1A0F20596AC500BDC313 /* LaunchScreen.storyboard */,
408F1A1220596AC500BDC313 /* Info.plist */,
40F899B62060F83700471ADF /* AccountsTableViewController.swift */,
40F899B8206137B600471ADF /* CameraViewController.swift */,
);
path = Phimpme;
sourceTree = "<group>";
Expand Down Expand Up @@ -221,6 +224,7 @@
buildActionMask = 2147483647;
files = (
408F1A0920596AC500BDC313 /* ViewController.swift in Sources */,
40F899B9206137B600471ADF /* CameraViewController.swift in Sources */,
40F899B72060F83700471ADF /* AccountsTableViewController.swift in Sources */,
408F1A0720596AC500BDC313 /* AppDelegate.swift in Sources */,
);
Expand Down
4 changes: 2 additions & 2 deletions Phimpme/Base.lproj/Main.storyboard
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<!--Phimpme-->
<scene sceneID="jex-DL-ffg">
<objects>
<viewController id="OCr-eo-OQf" customClass="RAMAnimatedTabBarController" customModule="RAMAnimatedTabBarController" sceneMemberID="viewController">
<viewController id="OCr-eo-OQf" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="oZJ-1l-Lqo">
<rect key="frame" x="0.0" y="0.0" width="375" height="603"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
Expand Down Expand Up @@ -43,7 +43,7 @@
<!--Camera-->
<scene sceneID="5mZ-6J-9wV">
<objects>
<viewController id="qDl-q6-Cnp" customClass="RAMAnimatedTabBarController" customModule="RAMAnimatedTabBarController" sceneMemberID="viewController">
<viewController id="qDl-q6-Cnp" customClass="CameraViewController" customModule="Phimpme" customModuleProvider="target" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="sGU-v4-MRl">
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
Expand Down
18 changes: 18 additions & 0 deletions Phimpme/CameraViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// CameraViewController.swift
// Phimpme
//
// Created by JOGENDRA on 20/03/18.
// Copyright © 2018 Jogendra Singh. All rights reserved.
//

import UIKit

class CameraViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()

}

}

0 comments on commit 589b811

Please sign in to comment.