From 9ac6c139f3b0a30f9ba528dd08435f78f675f39f Mon Sep 17 00:00:00 2001 From: Taki Date: Fri, 23 May 2025 17:16:12 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20=ED=83=80=ED=82=A4=EB=B7=B0=20?= =?UTF-8?q?=EC=A0=9C=EC=9E=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/TakiView.swift | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift b/GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift new file mode 100644 index 0000000..2454865 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift @@ -0,0 +1,26 @@ +// +// TakiView.swift +// GithubPractice +// +// Created by Mr.Penguin on 5/23/25. +// + +import SwiftUI + +struct TakiView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Taki" + + var team: String = "멘토팀" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + TakiView() +} From 78fd5ac4425251ad0e54043904ae6be3cb5f0814 Mon Sep 17 00:00:00 2001 From: Taki Date: Fri, 23 May 2025 17:18:30 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Feat]=20=EB=A6=AC=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EC=97=90=20=ED=83=80=ED=82=A4=EB=B7=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GithubPractice/GithubPractice.xcodeproj/project.pbxproj | 2 ++ GithubPractice/GithubPractice/Model/LearnerViews.swift | 3 ++- GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj index 8eb97da..1806bfa 100644 --- a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj +++ b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj @@ -259,6 +259,7 @@ INFOPLIST_KEY_UILaunchScreen_Generation = YES; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -287,6 +288,7 @@ INFOPLIST_KEY_UILaunchScreen_Generation = YES; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index 9f43bbc..b7b6411 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -13,5 +13,6 @@ let learnerViews: [any LearnerView] = [ JudyView(), FridayView(), ElenaView(), - JudyJView() + JudyJView(), + TakiView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift b/GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift index 2454865..b4cfd6b 100644 --- a/GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift +++ b/GithubPractice/GithubPractice/View/LearnerViews/TakiView.swift @@ -11,7 +11,7 @@ struct TakiView: LearnerView { // TODO: 1. 이름, 팀 수정하고 커밋하기 var name: String = "Taki" - var team: String = "멘토팀" + var team: String = "10팀" var body: some View { Text("저의 이름은 \(name)입니다.")