Skip to content

Commit

Permalink
[FIX] DO-NOTTO-DO#84 - 성취뷰 코드수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongdung-eo committed Jan 13, 2023
1 parent 761da1d commit 1ff24c9
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ import Then
final class AchievementViewController: UIViewController {

// MARK: - Properties

var dataSource: [String: Int] = [:]


var shouldHideMissionView: Bool? {
didSet {
guard let shouldHideMissionView = self.shouldHideMissionView else { return }
Expand All @@ -30,7 +28,6 @@ final class AchievementViewController: UIViewController {
private var titleView = TitleView()
private lazy var segmentedControl = CustomSegmentedControl(items: [I18N.missionStatisticsMessage, I18N.situationStatisticsMessage])
private lazy var calendarView = CustomCalendar(frame: .zero)

private lazy var missionView = MissionStatisticsView(frame: view.bounds)
private lazy var situationView = SituationStatisticsView(frame: view.bounds)
private var bottomLabel = UILabel()
Expand All @@ -42,7 +39,7 @@ final class AchievementViewController: UIViewController {

var situationList: [SituationStatistcsResponseDTO] = []
var missionList: [MissionStatistcsResponseDTO] = []
private var achieveMonth: String?
var dataSource: [String: Int] = [:]

// MARK: - View Life Cycle

Expand Down Expand Up @@ -274,7 +271,7 @@ extension AchievementViewController: FSCalendarDataSource {
*/

// 캘린더 셀 설정해주는 코드 : CollectionViewCell이랑 동일하게 생각하면 됨
cell.configure(.bordered)
cell.configure(.step1)
return cell
}
}
Expand Down

0 comments on commit 1ff24c9

Please sign in to comment.