Skip to content

Commit f040ce8

Browse files
committed
[#234] MyPageViewController 리팩터링
- EATSSUKit에 AlertController 추출 - Xcode markup 작성
1 parent 7ee629f commit f040ce8

File tree

4 files changed

+266
-124
lines changed

4 files changed

+266
-124
lines changed

EATSSU/App/Sources/Presentation/MyPage/Model/MyPageLocalData.swift

-39
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
//
2+
// MyPageSettingList.swift
3+
// EATSSU
4+
//
5+
// Created by Jiwoong CHOI on 9/19/24.
6+
//
7+
8+
import Foundation
9+
10+
struct MyPageSettingList {
11+
let title: String
12+
}
13+
14+
extension MyPageSettingList {
15+
static let myPageTableLabelList = [
16+
// "푸시 알림 설정"
17+
MyPageSettingList(title: ESTextLiteral.MyPage.pushNotificationSetting),
18+
19+
// "내가 쓴 리뷰"
20+
MyPageSettingList(title: ESTextLiteral.MyPage.myReview),
21+
22+
// "문의하기"
23+
MyPageSettingList(title: ESTextLiteral.MyPage.inquiry),
24+
25+
// "서비스 이용약관"
26+
MyPageSettingList(title: ESTextLiteral.MyPage.termsOfUse),
27+
28+
// "개인정보 이용약관"
29+
MyPageSettingList(title: ESTextLiteral.MyPage.privacyTermsOfUse),
30+
31+
// "만든 사람들"
32+
MyPageSettingList(title: ESTextLiteral.MyPage.creators),
33+
34+
// "로그아웃"
35+
MyPageSettingList(title: ESTextLiteral.MyPage.logout),
36+
]
37+
}

0 commit comments

Comments
 (0)