From dd8f4e0c08d9c03e3abd1d623432e2784084cd1c Mon Sep 17 00:00:00 2001 From: Yurim Date: Fri, 25 Oct 2024 15:30:50 +0900 Subject: [PATCH] =?UTF-8?q?[Add]=20#6=20-=20(VersionRecordVC)=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 35-seminar.xcodeproj/project.pbxproj | 4 ++++ .../Week2/View/VersionRecordViewController.swift | 15 +++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 35-seminar/Presentation/Week2/View/VersionRecordViewController.swift diff --git a/35-seminar.xcodeproj/project.pbxproj b/35-seminar.xcodeproj/project.pbxproj index 6409407..e2b3d68 100644 --- a/35-seminar.xcodeproj/project.pbxproj +++ b/35-seminar.xcodeproj/project.pbxproj @@ -26,6 +26,7 @@ 15EC30532CCA434700A0480B /* UIButton+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15EC30522CCA434700A0480B /* UIButton+Extension.swift */; }; 15EC30552CCAB69000A0480B /* AppDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15EC30542CCAB69000A0480B /* AppDetailView.swift */; }; 15EC30572CCAC33700A0480B /* UIImage+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15EC30562CCAC33700A0480B /* UIImage+Extension.swift */; }; + 15EC30592CCB727300A0480B /* VersionRecordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15EC30582CCB727300A0480B /* VersionRecordViewController.swift */; }; 15F4FD072CC73D0A00C99A20 /* StarStackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15F4FD062CC73D0A00C99A20 /* StarStackView.swift */; }; 15F4FD0F2CC7649A00C99A20 /* BorderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15F4FD0E2CC7649A00C99A20 /* BorderView.swift */; }; /* End PBXBuildFile section */ @@ -51,6 +52,7 @@ 15EC30522CCA434700A0480B /* UIButton+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIButton+Extension.swift"; sourceTree = ""; }; 15EC30542CCAB69000A0480B /* AppDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDetailView.swift; sourceTree = ""; }; 15EC30562CCAC33700A0480B /* UIImage+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIImage+Extension.swift"; sourceTree = ""; }; + 15EC30582CCB727300A0480B /* VersionRecordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VersionRecordViewController.swift; sourceTree = ""; }; 15F4FD062CC73D0A00C99A20 /* StarStackView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StarStackView.swift; sourceTree = ""; }; 15F4FD0E2CC7649A00C99A20 /* BorderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BorderView.swift; sourceTree = ""; }; /* End PBXFileReference section */ @@ -187,6 +189,7 @@ children = ( 15EC30542CCAB69000A0480B /* AppDetailView.swift */, 1590A6A32CBE8A9200FB32AE /* AppDetailViewController.swift */, + 15EC30582CCB727300A0480B /* VersionRecordViewController.swift */, ); path = View; sourceTree = ""; @@ -277,6 +280,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 15EC30592CCB727300A0480B /* VersionRecordViewController.swift in Sources */, 1590A6A12CBE737600FB32AE /* PractScrollViewController.swift in Sources */, 157119D82CBE965700362252 /* SubtitleLabel.swift in Sources */, 15EC30552CCAB69000A0480B /* AppDetailView.swift in Sources */, diff --git a/35-seminar/Presentation/Week2/View/VersionRecordViewController.swift b/35-seminar/Presentation/Week2/View/VersionRecordViewController.swift new file mode 100644 index 0000000..4e378a0 --- /dev/null +++ b/35-seminar/Presentation/Week2/View/VersionRecordViewController.swift @@ -0,0 +1,15 @@ +// +// VersionRecordViewController.swift +// 35-seminar +// +// Created by 김유림 on 10/25/24. +// + +import UIKit + +class VersionRecordViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + } +}