Skip to content

Commit

Permalink
[Feat] #6 - FeedbackWriteView 모달 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
yurim830 committed Oct 25, 2024
1 parent b2fc57a commit 3e75b73
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ class AppDetailViewController: UIViewController {
appDetailView.versionRecordButton.addTarget(self, action: #selector (tappedVersionRecordButton), for: .touchUpInside)

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

appDetailView.feedbackWriteButton.addTarget(self, action: #selector(tappedFeedbackWriteButton), for: .touchUpInside)
}

@objc private func tappedVersionRecordButton() {
Expand All @@ -35,4 +37,8 @@ class AppDetailViewController: UIViewController {
@objc private func tappedFeedbackSummaryAllButton() {
self.navigationController?.pushViewController(AllFeedbackViewController(), animated: true)
}

@objc private func tappedFeedbackWriteButton() {
self.present(FeedbackWriteViewController(), animated: true)
}
}

0 comments on commit 3e75b73

Please sign in to comment.