質問編集履歴

1

無駄なコメントアウトを削除

2019/07/21 02:30

投稿

swifty
swifty

スコア38

test CHANGED
File without changes
test CHANGED
@@ -112,20 +112,14 @@
112
112
 
113
113
  if viewController.isKind(of: RecordViewController.self) {
114
114
 
115
- // RecordPage -> TodayPage
116
-
117
115
  return getTodayPage()
118
116
 
119
117
  } else if viewController.isKind(of: TodayViewController.self) {
120
118
 
121
- // TodayPage -> CalendarPage
122
-
123
119
  return getCalendarPage()
124
120
 
125
121
  }else{
126
122
 
127
- // CalendarPage -> end
128
-
129
123
  return nil
130
124
 
131
125
  }
@@ -138,20 +132,14 @@
138
132
 
139
133
  if viewController.isKind(of: CalendarViewController.self) {
140
134
 
141
- // CalendarPage -> TodayPage
142
-
143
135
  return getTodayPage()
144
136
 
145
- } else if viewController.isKind(of: TodayViewController.self) {
137
+ } else if viewController.isKind(of: TodayViewController.self) {
146
-
147
- // TodayPage -> RecordPage
148
138
 
149
139
  return getRecordPage()
150
140
 
151
141
  }else{
152
142
 
153
- // RecordPage -> end
154
-
155
143
  return nil
156
144
 
157
145
  }