Skip to content

Commit

Permalink
refactor: UIPageViewController 배경 색 clear 변경 및 메소드 추출
Browse files Browse the repository at this point in the history
UI 설정 코드 메소드로 추출

Issue: #38
  • Loading branch information
corykim0829 committed Apr 27, 2020
1 parent c44b7dc commit 69034ed
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ class ThumbnailsPageViewController: UIPageViewController {
super.viewDidLoad()

dataSource = self
view.backgroundColor = .green
configureUI()
}

private func configureUI() {
view.backgroundColor = .clear
}

func configureImageURLs(_ imageURLs: [String]) {
Expand Down

0 comments on commit 69034ed

Please sign in to comment.