diff --git a/Cherrish-iOS/Cherrish-iOS.xcodeproj/project.pbxproj b/Cherrish-iOS/Cherrish-iOS.xcodeproj/project.pbxproj index b12d5091..53b54410 100644 --- a/Cherrish-iOS/Cherrish-iOS.xcodeproj/project.pbxproj +++ b/Cherrish-iOS/Cherrish-iOS.xcodeproj/project.pbxproj @@ -293,8 +293,8 @@ INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchScreen_Generation = YES; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; INFOPLIST_KEY_UIUserInterfaceStyle = Light; IPHONEOS_DEPLOYMENT_TARGET = 17.6; LD_RUNPATH_SEARCH_PATHS = ( @@ -331,8 +331,8 @@ INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchScreen_Generation = YES; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; INFOPLIST_KEY_UIUserInterfaceStyle = Light; IPHONEOS_DEPLOYMENT_TARGET = 17.6; LD_RUNPATH_SEARCH_PATHS = ( diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/SelectTreatment/SelectTreatmentView.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/SelectTreatment/SelectTreatmentView.swift index ae70bc4f..d946e562 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/SelectTreatment/SelectTreatmentView.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/SelectTreatment/SelectTreatmentView.swift @@ -13,6 +13,9 @@ struct SelectTreatmentView: View { @ObservedObject var viewModel: SelectTreatmentViewModel var body: some View { + Spacer() + .frame(height: 20.adjustedH) + CherrishNavigationBar( title: "시술 여부 선택", leftButtonAction: { diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/Treatment/View/NoTreatment/NoTreatmentView.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/Treatment/View/NoTreatment/NoTreatmentView.swift index f5db3ccb..e4d13735 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/Treatment/View/NoTreatment/NoTreatmentView.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/Treatment/View/NoTreatment/NoTreatmentView.swift @@ -14,6 +14,9 @@ struct NoTreatmentView: View { var body: some View { VStack(spacing: 0) { + Spacer() + .frame(height: 20.adjustedH) + CherrishNavigationBar( title: viewModel.state.title, leftButtonAction: { diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/Treatment/View/Treatment/TreatmentView.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/Treatment/View/Treatment/TreatmentView.swift index aeba478d..118d113e 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/Treatment/View/Treatment/TreatmentView.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/Calendar/Treatment/View/Treatment/TreatmentView.swift @@ -14,6 +14,9 @@ struct TreatmentView: View { var body: some View { VStack(spacing: 0) { + Spacer() + .frame(height: 20.adjustedH) + CherrishNavigationBar( title: viewModel.state.title, leftButtonAction: { diff --git a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/ChallengeView/View/CreateChallengeView.swift b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/ChallengeView/View/CreateChallengeView.swift index f91ad008..10fcb031 100644 --- a/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/ChallengeView/View/CreateChallengeView.swift +++ b/Cherrish-iOS/Cherrish-iOS/Presentation/Feature/ChallengeView/View/CreateChallengeView.swift @@ -14,6 +14,9 @@ struct CreateChallengeView: View { var body: some View { VStack { + Spacer() + .frame(height: 20.adjustedH) + CherrishNavigationBar( isDisplayLeftButton: viewModel.viewState.isLeftButton, isDisplayRightButton: viewModel.viewState.isRightButton,