Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Add] star slider #7

Merged
merged 1 commit into from
Jun 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions YOGIZOGI_iOS/YOZO_iOS.xcworkspace/contents.xcworkspacedata

This file was deleted.

4 changes: 4 additions & 0 deletions YOZO_iOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
7A7E2F172A32FC22007B566E /* MenuCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A7E2F162A32FC22007B566E /* MenuCell.swift */; };
7ACBC83F2A0A224D00896297 /* TasteReviewListVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ACBC83E2A0A224D00896297 /* TasteReviewListVC.swift */; };
7AD6253A2A36FBD900768257 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AD625392A36FBD900768257 /* UIColor+Extension.swift */; };
7AD6253C2A3864BE00768257 /* TasteReviewVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AD6253B2A3864BE00768257 /* TasteReviewVC.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand Down Expand Up @@ -55,6 +56,7 @@
7A7E2F162A32FC22007B566E /* MenuCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuCell.swift; sourceTree = "<group>"; };
7ACBC83E2A0A224D00896297 /* TasteReviewListVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TasteReviewListVC.swift; sourceTree = "<group>"; };
7AD625392A36FBD900768257 /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = "<group>"; };
7AD6253B2A3864BE00768257 /* TasteReviewVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TasteReviewVC.swift; path = ../../../../Documents/TasteReviewVC.swift; sourceTree = "<group>"; };
D4DCA2243FF8BECE59C2C208 /* Pods_YOZO_iOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_YOZO_iOS.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */

Expand Down Expand Up @@ -160,6 +162,7 @@
7A7E2F162A32FC22007B566E /* MenuCell.swift */,
7ACBC83E2A0A224D00896297 /* TasteReviewListVC.swift */,
7A36AB2A2A18DB7600ADE4EC /* TasteReivewCell.swift */,
7AD6253B2A3864BE00768257 /* TasteReviewVC.swift */,
);
path = Controllers;
sourceTree = "<group>";
Expand Down Expand Up @@ -290,6 +293,7 @@
files = (
7A4FAF4129EFAFF100E19842 /* SignupViewModel.swift in Sources */,
7A5BC8F929E63A2500BBC3B3 /* LoginVC.swift in Sources */,
7AD6253C2A3864BE00768257 /* TasteReviewVC.swift in Sources */,
7A36AB032A18CBA400ADE4EC /* TasteReviewListViewModel.swift in Sources */,
7A36AB2B2A18DB7600ADE4EC /* TasteReivewCell.swift in Sources */,
7AD6253A2A36FBD900768257 /* UIColor+Extension.swift in Sources */,
Expand Down
3 changes: 2 additions & 1 deletion YOZO_iOS/Controllers/MainVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class MainVC: UIViewController,CLLocationManagerDelegate, UISheetPresentationCon

override func viewDidLoad() {
super.viewDidLoad()


let mapView = NMFMapView(frame: view.frame)
view.addSubview(mapView)
Expand Down Expand Up @@ -59,7 +60,7 @@ class MainVC: UIViewController,CLLocationManagerDelegate, UISheetPresentationCon
}

}


}

3 changes: 3 additions & 0 deletions YOZO_iOS/Controllers/RestaurantInfoVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ class RestaurantInfoVC: UIViewController, UICollectionViewDataSource, UICollecti
make.trailing.equalToSuperview().offset(-10)
make.bottom.equalToSuperview()
}


}


// MARK: - UICollectionViewDataSource

Expand Down
2 changes: 1 addition & 1 deletion YOZO_iOS/Controllers/TasteReviewListVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ class TasteReviewListVC: UIViewController {


}

}

35 changes: 18 additions & 17 deletions YOZO_iOS/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,24 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {


func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
// Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
// If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
guard let windowScene = (scene as? UIWindowScene) else { return }

window = UIWindow(frame: UIScreen.main.bounds)

let mainVC = LoginVC()

let navVC = UINavigationController(rootViewController: LoginVC())

window?.rootViewController = navVC

window?.makeKeyAndVisible()

window?.windowScene = windowScene
}
// Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
// If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
guard let windowScene = (scene as? UIWindowScene) else { return }

window = UIWindow(frame: UIScreen.main.bounds)

let mainVC = LoginVC()

let navVC = UINavigationController(rootViewController: TasteReviewVC())

window?.rootViewController = navVC

window?.makeKeyAndVisible()

window?.windowScene = windowScene
}


func sceneDidDisconnect(_ scene: UIScene) {
// Called as the scene is being released by the system.
Expand Down