Skip to content

Commit

Permalink
feat: ✨PriceView 파일 생성(#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lia316 committed Jun 2, 2021
1 parent 4db2097 commit 9df3610
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions iOS/Airbnb/Airbnb.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
AEC52F6E2663FEB200D8F802 /* ConditionTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEC52F6D2663FEB200D8F802 /* ConditionTableViewController.swift */; };
AEC52F712663FF3600D8F802 /* ConditionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEC52F6F2663FF3600D8F802 /* ConditionCell.swift */; };
AEC52F742664041200D8F802 /* ConditionViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEC52F732664041200D8F802 /* ConditionViewModel.swift */; };
AEF03BA526674E8200050531 /* PriceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEF03BA426674E8200050531 /* PriceViewController.swift */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -93,6 +94,7 @@
AEC52F6D2663FEB200D8F802 /* ConditionTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConditionTableViewController.swift; sourceTree = "<group>"; };
AEC52F6F2663FF3600D8F802 /* ConditionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConditionCell.swift; sourceTree = "<group>"; };
AEC52F732664041200D8F802 /* ConditionViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConditionViewModel.swift; sourceTree = "<group>"; };
AEF03BA426674E8200050531 /* PriceViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PriceViewController.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -240,6 +242,7 @@
children = (
AEC52F6C2663FDEB00D8F802 /* Condition */,
AEC52F6A2663F28100D8F802 /* Calendar */,
AEF03BA326674E6000050531 /* Price */,
);
path = ConditionPage;
sourceTree = "<group>";
Expand All @@ -266,6 +269,14 @@
path = Condition;
sourceTree = "<group>";
};
AEF03BA326674E6000050531 /* Price */ = {
isa = PBXGroup;
children = (
AEF03BA426674E8200050531 /* PriceViewController.swift */,
);
path = Price;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down Expand Up @@ -408,6 +419,7 @@
AEC52F742664041200D8F802 /* ConditionViewModel.swift in Sources */,
AE3FE07526574E7000A95177 /* SearchCityViewController.swift in Sources */,
AEC52F712663FF3600D8F802 /* ConditionCell.swift in Sources */,
AEF03BA526674E8200050531 /* PriceViewController.swift in Sources */,
AE11F5AA265F3D250034779F /* DayCell.swift in Sources */,
AE11F5AC265F3D5F0034779F /* DateGenerator.swift in Sources */,
AE3FE07726578F1700A95177 /* RegionData.swift in Sources */,
Expand Down
Binary file not shown.
17 changes: 17 additions & 0 deletions iOS/Airbnb/Airbnb/ConditionPage/Price/PriceViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// PriceViewController.swift
// Airbnb
//
// Created by Lia on 2021/06/02.
//

import UIKit

class PriceViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()

}

}

0 comments on commit 9df3610

Please sign in to comment.