Skip to content

Commit

Permalink
[Add, Feat] #6 - 전체 평가 및 리뷰 VC 생성 및 버튼 연결
Browse files Browse the repository at this point in the history
  • Loading branch information
yurim830 committed Oct 25, 2024
1 parent 40b1651 commit 6ee36ee
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 35-seminar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
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 */; };
15EC305B2CCB76F500A0480B /* AllFeedbackViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15EC305A2CCB76F500A0480B /* AllFeedbackViewController.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 */
Expand All @@ -53,6 +54,7 @@
15EC30542CCAB69000A0480B /* AppDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDetailView.swift; sourceTree = "<group>"; };
15EC30562CCAC33700A0480B /* UIImage+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIImage+Extension.swift"; sourceTree = "<group>"; };
15EC30582CCB727300A0480B /* VersionRecordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VersionRecordViewController.swift; sourceTree = "<group>"; };
15EC305A2CCB76F500A0480B /* AllFeedbackViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AllFeedbackViewController.swift; sourceTree = "<group>"; };
15F4FD062CC73D0A00C99A20 /* StarStackView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StarStackView.swift; sourceTree = "<group>"; };
15F4FD0E2CC7649A00C99A20 /* BorderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BorderView.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
Expand Down Expand Up @@ -189,6 +191,7 @@
children = (
15EC30542CCAB69000A0480B /* AppDetailView.swift */,
1590A6A32CBE8A9200FB32AE /* AppDetailViewController.swift */,
15EC305A2CCB76F500A0480B /* AllFeedbackViewController.swift */,
15EC30582CCB727300A0480B /* VersionRecordViewController.swift */,
);
path = View;
Expand Down Expand Up @@ -296,6 +299,7 @@
15F4FD072CC73D0A00C99A20 /* StarStackView.swift in Sources */,
157119DD2CBE96F500362252 /* UILabel+Extension.swift in Sources */,
15F4FD0F2CC7649A00C99A20 /* BorderView.swift in Sources */,
15EC305B2CCB76F500A0480B /* AllFeedbackViewController.swift in Sources */,
15EC30572CCAC33700A0480B /* UIImage+Extension.swift in Sources */,
1590A6452CBE6C6A00FB32AE /* Week1MainViewController.swift in Sources */,
);
Expand Down
16 changes: 16 additions & 0 deletions 35-seminar/Presentation/Week2/View/AllFeedbackViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// AllFeedbackViewController.swift
// 35-seminar
//
// Created by 김유림 on 10/25/24.
//

import UIKit

class AllFeedbackViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .systemBackground
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,15 @@ class AppDetailViewController: UIViewController {

private func setButtonAction() {
appDetailView.versionRecordButton.addTarget(self, action: #selector (tappedVersionRecordButton), for: .touchUpInside)

appDetailView.feedbackSummaryAllButton.addTarget(self, action: #selector (tappedFeedbackSummaryAllButton), for: .touchUpInside)
}

@objc private func tappedVersionRecordButton() {
self.navigationController?.pushViewController(VersionRecordViewController(), animated: true)
}

@objc private func tappedFeedbackSummaryAllButton() {
self.navigationController?.pushViewController(AllFeedbackViewController(), animated: true)
}
}

0 comments on commit 6ee36ee

Please sign in to comment.