From f3718ae533c6b8ac6f5cc6695b412d5c09c22991 Mon Sep 17 00:00:00 2001 From: Frisson Date: Tue, 26 May 2026 17:13:40 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=9A=B0=ED=9E=88=20xcode=20=ED=95=98?= =?UTF-8?q?=EA=B3=A0=20=EC=BB=A4=EB=B0=8B=20=ED=95=B4=EB=B3=BC=EA=B9=8C?= =?UTF-8?q?=EC=95=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/FrissonView.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/FrissonView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/FrissonView.swift b/GithubPractice/GithubPractice/View/LearnerViews/FrissonView.swift new file mode 100644 index 0000000..4b1697b --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/FrissonView.swift @@ -0,0 +1,22 @@ +// +// FrissonView.swift +// GithubPractice +// +// Created by 평화 on 5/26/26. +// + +import SwiftUI + +struct FrissonView: View { + var name: String = "Frisson" + + var team: String = "14" + + var body: some View { + Text("나는 프리송이다.") + } +} + +#Preview { + FrissonView() +} From 36e07a58f9356b25bd2d4e9915bd59a3953af41f Mon Sep 17 00:00:00 2001 From: Frisson Date: Tue, 26 May 2026 17:16:59 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=B7=B0=20=EC=B6=94=EA=B0=80=ED=96=88?= =?UTF-8?q?=EC=88=98=20=EC=BB=A4=EB=B0=8B?= 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/View/LearnerViews/FrissonView.swift | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj index ef6aa66..5960abf 100644 --- a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj +++ b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj @@ -254,6 +254,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = QJTJ42Q362; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; @@ -283,6 +284,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = QJTJ42Q362; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..28439c3 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -11,5 +11,6 @@ import SwiftUI let learnerViews: [any LearnerView] = [ LumiView(), JudyView(), - IrisView() + IrisView(), + FrissonView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/FrissonView.swift b/GithubPractice/GithubPractice/View/LearnerViews/FrissonView.swift index 4b1697b..49bde4b 100644 --- a/GithubPractice/GithubPractice/View/LearnerViews/FrissonView.swift +++ b/GithubPractice/GithubPractice/View/LearnerViews/FrissonView.swift @@ -7,7 +7,7 @@ import SwiftUI -struct FrissonView: View { +struct FrissonView: LearnerView { var name: String = "Frisson" var team: String = "14"