From 32888b6b404ed10a8599c914f2dfee0c9cefb436 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=9D=B4=EC=A4=80?= Date: Mon, 15 Nov 2021 00:25:35 +0900 Subject: [PATCH 1/5] =?UTF-8?q?[#9]=20=ED=94=84=EB=A1=9C=ED=95=84=20?= =?UTF-8?q?=EC=82=AC=EC=A7=84=20=EB=88=84=EB=A5=B4=EB=A9=B4=20=EB=A1=9C?= =?UTF-8?q?=EA=B7=B8=EC=9D=B8=EC=9C=BC=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 29th_Youtube/29th_Youtube/SceneDelegate.swift | 2 +- .../Sources/HomeVC/HomeXib/HomeXibVC.swift | 10 ++++++++++ .../29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.xib | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/29th_Youtube/29th_Youtube/SceneDelegate.swift b/29th_Youtube/29th_Youtube/SceneDelegate.swift index df4b7b9..5ed1939 100644 --- a/29th_Youtube/29th_Youtube/SceneDelegate.swift +++ b/29th_Youtube/29th_Youtube/SceneDelegate.swift @@ -19,7 +19,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { guard let windowScene = (scene as? UIWindowScene) else { return } window = UIWindow(frame: windowScene.coordinateSpace.bounds) window?.windowScene = windowScene - let navigationController = UINavigationController(rootViewController: LoginVC()) + let navigationController = UINavigationController(rootViewController: HomeXibVC()) window?.rootViewController = navigationController window?.makeKeyAndVisible() } diff --git a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift index 4b31b5f..d58480c 100644 --- a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift +++ b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift @@ -12,6 +12,8 @@ class HomeXibVC: UIViewController { @IBOutlet weak var channelCV: UICollectionView! @IBOutlet weak var contentTV: UITableView! + @IBOutlet weak var profileImg: UIImageView! + var channelList: [ChannelData] = [] var contentList: [ContentData] = [] @@ -21,6 +23,7 @@ class HomeXibVC: UIViewController { initContentList() registerXib() setUI() + self.navigationController?.isNavigationBarHidden = true } func registerXib(){ @@ -57,8 +60,15 @@ class HomeXibVC: UIViewController { channelCV.delegate = self contentTV.dataSource = self contentTV.delegate = self + let tapGesture = UITapGestureRecognizer(target: self, action: #selector(touchToLogin)) + profileImg.addGestureRecognizer(tapGesture) + profileImg.isUserInteractionEnabled = true } + @objc func touchToLogin() { + let nextVC = LoginVC() + self.navigationController?.pushViewController(nextVC, animated: true) + } } extension HomeXibVC: UICollectionViewDelegate{ diff --git a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.xib b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.xib index 0cad3f4..d22035f 100644 --- a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.xib +++ b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.xib @@ -13,6 +13,7 @@ + From 72a8ebe87d158efc0f66f062cafd21496e21ab51 Mon Sep 17 00:00:00 2001 From: dlwns33 Date: Fri, 24 Dec 2021 22:20:00 +0900 Subject: [PATCH 2/5] =?UTF-8?q?[#10]=20=EC=9C=A0=ED=8A=9C=EB=B8=8C=20?= =?UTF-8?q?=EB=8D=B0=EC=9D=B4=ED=84=B0=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xcschemes/xcschememanagement.plist | 2 +- .../29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/29th_Youtube/29th_Youtube.xcodeproj/xcuserdata/yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist b/29th_Youtube/29th_Youtube.xcodeproj/xcuserdata/yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist index 51fb068..3af4359 100644 --- a/29th_Youtube/29th_Youtube.xcodeproj/xcuserdata/yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/29th_Youtube/29th_Youtube.xcodeproj/xcuserdata/yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ 29th_Youtube.xcscheme_^#shared#^_ orderHint - 3 + 0 diff --git a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift index d58480c..d540dda 100644 --- a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift +++ b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift @@ -48,10 +48,11 @@ class HomeXibVC: UIViewController { func initContentList(){ contentList.append(contentsOf: [ ContentData(contentTitle: "weSoptPlanPart", thumnbnail: "wesoptPlanPart"), - ContentData(contentTitle: "weSoptPlanPart", thumnbnail: "wesoptPlanPart"), - ContentData(contentTitle: "weSoptPlanPart", thumnbnail: "wesoptPlanPart"), - ContentData(contentTitle: "weSoptPlanPart", thumnbnail: "wesoptPlanPart"), - ContentData(contentTitle: "weSoptPlanPart", thumnbnail: "wesoptPlanPart") + ContentData(contentTitle: "weSoptDesignPart", thumnbnail: "wesoptDesignPart"), + ContentData(contentTitle: "weSoptAndroidPart", thumnbnail: "wesoptAndroidPart"), + ContentData(contentTitle: "weSoptiOSPart", thumnbnail: "wesoptiOSPart"), + ContentData(contentTitle: "weSoptServerPart", thumnbnail: "wesoptServerPart"), + ContentData(contentTitle: "weSoptWebPart", thumnbnail: "wesoptWebPart") ]) } From 66eb8c63faee43aa136b8dd741ddcf8fa393b3ec Mon Sep 17 00:00:00 2001 From: dlwns33 Date: Fri, 24 Dec 2021 22:33:38 +0900 Subject: [PATCH 3/5] =?UTF-8?q?[#10]=20tableView=20cell=20=EC=9D=B4?= =?UTF-8?q?=EB=AF=B8=EC=A7=80=EC=97=90=20tapGestureRecognizer=20=EB=84=A3?= =?UTF-8?q?=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/HomeVC/Cell/ContentTVC.swift | 13 +++++++++++++ .../Sources/HomeVC/HomeXib/HomeXibVC.swift | 3 +++ 2 files changed, 16 insertions(+) diff --git a/29th_Youtube/29th_Youtube/Sources/HomeVC/Cell/ContentTVC.swift b/29th_Youtube/29th_Youtube/Sources/HomeVC/Cell/ContentTVC.swift index 74d9ba6..140a0d1 100644 --- a/29th_Youtube/29th_Youtube/Sources/HomeVC/Cell/ContentTVC.swift +++ b/29th_Youtube/29th_Youtube/Sources/HomeVC/Cell/ContentTVC.swift @@ -15,6 +15,8 @@ class ContentTVC: UITableViewCell { static let identifier = "ContentTVC" + var presentToDetailViewController: (() -> Void)? + override func awakeFromNib() { super.awakeFromNib() setUI() @@ -28,10 +30,21 @@ class ContentTVC: UITableViewCell { func setUI(){ descriptions.text = "WE SOPT : 조회수 100만회 : 3주 전" descriptions.textColor = .darkGray + let tapGesture: UITapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(self.handleTap(_:))) + tapGesture.delegate = self + + thumbnail.isUserInteractionEnabled = true + thumbnail.addGestureRecognizer(tapGesture) } func setData(contentData: ContentData) { thumbnail.image = contentData.makeImage() title.text = contentData.contentTitle } + + @objc func handleTap(_ sender: UITapGestureRecognizer? = nil) { + presentToDetailViewController?() + } + } + diff --git a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift index d540dda..d569298 100644 --- a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift +++ b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift @@ -122,6 +122,9 @@ extension HomeXibVC: UITableViewDataSource{ guard let cell = tableView.dequeueReusableCell(withIdentifier: ContentTVC.identifier) as? ContentTVC else {return UITableViewCell()} cell.setData(contentData: contentList[indexPath.row]) + cell.presentToDetailViewController = { + // 디테일로 이동 + } return cell } } From 79a4704aec48b6ef67c31eae32e5d0083543c5cd Mon Sep 17 00:00:00 2001 From: dlwns33 Date: Fri, 24 Dec 2021 22:54:53 +0900 Subject: [PATCH 4/5] =?UTF-8?q?[#10]=20detailVC=EB=A1=9C=20=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=EC=A0=84=EB=8B=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../29th_Youtube.xcodeproj/project.pbxproj | 16 ++++ .../Sources/DetailVC/DetailVC.swift | 29 +++++++ .../Sources/DetailVC/DetailVC.xib | 81 +++++++++++++++++++ .../Sources/HomeVC/Cell/ContentTVC.xib | 4 +- .../HomeVC/DataModel/ContentData.swift | 1 + .../Sources/HomeVC/HomeXib/HomeXibVC.swift | 16 ++-- 6 files changed, 139 insertions(+), 8 deletions(-) create mode 100644 29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift create mode 100644 29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib diff --git a/29th_Youtube/29th_Youtube.xcodeproj/project.pbxproj b/29th_Youtube/29th_Youtube.xcodeproj/project.pbxproj index 4be4e26..ad2d016 100644 --- a/29th_Youtube/29th_Youtube.xcodeproj/project.pbxproj +++ b/29th_Youtube/29th_Youtube.xcodeproj/project.pbxproj @@ -7,6 +7,8 @@ objects = { /* Begin PBXBuildFile section */ + 7734D5AE277603DA004360E4 /* DetailVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7734D5AC277603DA004360E4 /* DetailVC.swift */; }; + 7734D5AF277603DA004360E4 /* DetailVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7734D5AD277603DA004360E4 /* DetailVC.xib */; }; 7766D29C272C3C6000FE6E2E /* ChannelCVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7766D29A272C3C6000FE6E2E /* ChannelCVC.swift */; }; 7766D29D272C3C6000FE6E2E /* ChannelCVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7766D29B272C3C6000FE6E2E /* ChannelCVC.xib */; }; 7766D2A0272C3EEB00FE6E2E /* HomeXibVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7766D29E272C3EEB00FE6E2E /* HomeXibVC.swift */; }; @@ -39,6 +41,8 @@ /* Begin PBXFileReference section */ 1515ED822D173FDD791B030B /* Pods-29th_Youtube.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-29th_Youtube.debug.xcconfig"; path = "Target Support Files/Pods-29th_Youtube/Pods-29th_Youtube.debug.xcconfig"; sourceTree = ""; }; 2EE899D37341854FCE6A52A4 /* Pods-29th_Youtube.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-29th_Youtube.release.xcconfig"; path = "Target Support Files/Pods-29th_Youtube/Pods-29th_Youtube.release.xcconfig"; sourceTree = ""; }; + 7734D5AC277603DA004360E4 /* DetailVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DetailVC.swift; sourceTree = ""; }; + 7734D5AD277603DA004360E4 /* DetailVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DetailVC.xib; sourceTree = ""; }; 7766D29A272C3C6000FE6E2E /* ChannelCVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChannelCVC.swift; sourceTree = ""; }; 7766D29B272C3C6000FE6E2E /* ChannelCVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChannelCVC.xib; sourceTree = ""; }; 7766D29E272C3EEB00FE6E2E /* HomeXibVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeXibVC.swift; sourceTree = ""; }; @@ -91,6 +95,15 @@ path = Pods; sourceTree = ""; }; + 7734D5AB277603C3004360E4 /* DetailVC */ = { + isa = PBXGroup; + children = ( + 7734D5AC277603DA004360E4 /* DetailVC.swift */, + 7734D5AD277603DA004360E4 /* DetailVC.xib */, + ); + path = DetailVC; + sourceTree = ""; + }; 7766D299272C3C0200FE6E2E /* Cell */ = { isa = PBXGroup; children = ( @@ -227,6 +240,7 @@ 77FFCCE527105B40000E49F7 /* Sources */ = { isa = PBXGroup; children = ( + 7734D5AB277603C3004360E4 /* DetailVC */, 77DAC88B2721FDEE00B576D9 /* HomeVC */, 77DAC88C2721FDF400B576D9 /* ShortsVC */, 77DAC88D2721FDFB00B576D9 /* PlusVC */, @@ -331,6 +345,7 @@ buildActionMask = 2147483647; files = ( 7766D29D272C3C6000FE6E2E /* ChannelCVC.xib in Resources */, + 7734D5AF277603DA004360E4 /* DetailVC.xib in Resources */, 7766D2AC272C48C800FE6E2E /* ContentTVC.xib in Resources */, 77FFCCDD2710548D000E49F7 /* LaunchScreen.storyboard in Resources */, 77FFCCDA2710548D000E49F7 /* Assets.xcassets in Resources */, @@ -400,6 +415,7 @@ 77DAC89F2722071500B576D9 /* Constants.swift in Sources */, 77FFCCD127105488000E49F7 /* AppDelegate.swift in Sources */, 77DAC8972721FE7400B576D9 /* SubscribeVC.swift in Sources */, + 7734D5AE277603DA004360E4 /* DetailVC.swift in Sources */, 77FFCCD327105488000E49F7 /* SceneDelegate.swift in Sources */, 7766D2AB272C48C800FE6E2E /* ContentTVC.swift in Sources */, 77DAC8952721FE6000B576D9 /* PlusVC.swift in Sources */, diff --git a/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift b/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift new file mode 100644 index 0000000..7a3313d --- /dev/null +++ b/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift @@ -0,0 +1,29 @@ +// +// DetailVC.swift +// 29th_Youtube +// +// Created by Yi Joon Choi on 2021/12/24. +// + +import UIKit + +class DetailVC: UIViewController { + + @IBOutlet weak var thumbnail: UIImageView! + @IBOutlet weak var videoTitle: UILabel! + @IBOutlet weak var videoDescription: UILabel! + + var contentList : ContentData? + + override func viewDidLoad() { + super.viewDidLoad() + setUI() + } + + private func setUI() { + thumbnail.image = UIImage(named: contentList?.thumnbnail ?? "") + videoTitle.text = contentList?.contentTitle + videoDescription.text = contentList?.description + } + +} diff --git a/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib b/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib new file mode 100644 index 0000000..06e4100 --- /dev/null +++ b/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/29th_Youtube/29th_Youtube/Sources/HomeVC/Cell/ContentTVC.xib b/29th_Youtube/29th_Youtube/Sources/HomeVC/Cell/ContentTVC.xib index c6b49a5..6b18eba 100644 --- a/29th_Youtube/29th_Youtube/Sources/HomeVC/Cell/ContentTVC.xib +++ b/29th_Youtube/29th_Youtube/Sources/HomeVC/Cell/ContentTVC.xib @@ -1,9 +1,9 @@ - + - + diff --git a/29th_Youtube/29th_Youtube/Sources/HomeVC/DataModel/ContentData.swift b/29th_Youtube/29th_Youtube/Sources/HomeVC/DataModel/ContentData.swift index a3a58d5..8d304c6 100644 --- a/29th_Youtube/29th_Youtube/Sources/HomeVC/DataModel/ContentData.swift +++ b/29th_Youtube/29th_Youtube/Sources/HomeVC/DataModel/ContentData.swift @@ -11,6 +11,7 @@ import UIKit struct ContentData{ let contentTitle: String let thumnbnail: String + let description: String func makeImage() -> UIImage? { return UIImage(named: thumnbnail) diff --git a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift index d569298..ffd870f 100644 --- a/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift +++ b/29th_Youtube/29th_Youtube/Sources/HomeVC/HomeXib/HomeXibVC.swift @@ -47,12 +47,12 @@ class HomeXibVC: UIViewController { func initContentList(){ contentList.append(contentsOf: [ - ContentData(contentTitle: "weSoptPlanPart", thumnbnail: "wesoptPlanPart"), - ContentData(contentTitle: "weSoptDesignPart", thumnbnail: "wesoptDesignPart"), - ContentData(contentTitle: "weSoptAndroidPart", thumnbnail: "wesoptAndroidPart"), - ContentData(contentTitle: "weSoptiOSPart", thumnbnail: "wesoptiOSPart"), - ContentData(contentTitle: "weSoptServerPart", thumnbnail: "wesoptServerPart"), - ContentData(contentTitle: "weSoptWebPart", thumnbnail: "wesoptWebPart") + ContentData(contentTitle: "weSoptPlanPart", thumnbnail: "wesoptPlanPart", description: "WE SOPT : 조회수 100만회 : 3주 전"), + ContentData(contentTitle: "weSoptDesignPart", thumnbnail: "wesoptDesignPart", description: "WE SOPT : 조회수 100만회 : 3주 전"), + ContentData(contentTitle: "weSoptAndroidPart", thumnbnail: "wesoptAndroidPart", description: "WE SOPT : 조회수 100만회 : 3주 전"), + ContentData(contentTitle: "weSoptiOSPart", thumnbnail: "wesoptiOSPart", description: "WE SOPT : 조회수 100만회 : 3주 전"), + ContentData(contentTitle: "weSoptServerPart", thumnbnail: "wesoptServerPart", description: "WE SOPT : 조회수 100만회 : 3주 전"), + ContentData(contentTitle: "weSoptWebPart", thumnbnail: "wesoptWebPart", description: "WE SOPT : 조회수 100만회 : 3주 전") ]) } @@ -124,6 +124,10 @@ extension HomeXibVC: UITableViewDataSource{ cell.setData(contentData: contentList[indexPath.row]) cell.presentToDetailViewController = { // 디테일로 이동 + let nextVC = DetailVC() + nextVC.contentList = self.contentList[indexPath.row] + nextVC.modalPresentationStyle = .overFullScreen + self.present(nextVC, animated: true, completion: nil) } return cell } From da9b2a634854520f3b50741d52736cab9c428187 Mon Sep 17 00:00:00 2001 From: dlwns33 Date: Fri, 24 Dec 2021 22:56:25 +0900 Subject: [PATCH 5/5] =?UTF-8?q?[#10]=20DetailVC=20dismiss=20=EB=90=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist | 2 +- 29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift | 3 +++ 29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/29th_Youtube/29th_Youtube.xcodeproj/xcuserdata/yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist b/29th_Youtube/29th_Youtube.xcodeproj/xcuserdata/yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist index 3af4359..420859e 100644 --- a/29th_Youtube/29th_Youtube.xcodeproj/xcuserdata/yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/29th_Youtube/29th_Youtube.xcodeproj/xcuserdata/yijoonchoi.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ 29th_Youtube.xcscheme_^#shared#^_ orderHint - 0 + 1 diff --git a/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift b/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift index 7a3313d..483fb94 100644 --- a/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift +++ b/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.swift @@ -15,6 +15,9 @@ class DetailVC: UIViewController { var contentList : ContentData? + @IBAction func dismissVC(_ sender: Any) { + self.dismiss(animated: true, completion: nil) + } override func viewDidLoad() { super.viewDidLoad() setUI() diff --git a/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib b/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib index 06e4100..ca0c365 100644 --- a/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib +++ b/29th_Youtube/29th_Youtube/Sources/DetailVC/DetailVC.xib @@ -48,6 +48,9 @@ + + +