Skip to content

Commit

Permalink
Merge pull request #284 from PomeTeam/dev-fix-qa-gomin
Browse files Browse the repository at this point in the history
[fix] 목표 종료 후 기록 > 테이블뷰 seperator 오류 해결
  • Loading branch information
gom1n authored Mar 24, 2023
2 parents 9725980 + e69d59a commit 37449da
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import UIKit
import CloudKit

class RecordViewController: BaseTabViewController {
var recordView = RecordView()
var recordView: RecordView!
var dataIndexBy: (IndexPath) -> Int = { indexPath in
return indexPath.row - 3
}
Expand Down Expand Up @@ -37,6 +37,7 @@ class RecordViewController: BaseTabViewController {
override func style() {
super.style()

recordView = RecordView()
recordView.recordTableView.delegate = self
recordView.recordTableView.dataSource = self
}
Expand Down

0 comments on commit 37449da

Please sign in to comment.