Skip to content

Commit

Permalink
[#114] FIX : 스크롤바 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
SuwonPabby committed Jul 22, 2022
1 parent 69e969f commit b1a2a95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class ProfileTestResultViewController : UIViewController {
private enum Size {
static let screenWidth = UIScreen.main.bounds.width
static let imageCellSize = CGSize(width: Size.screenWidth, height: 320)
static let textCellSize = CGSize(width: Size.screenWidth, height: 340)
static let textCellSize = CGSize(width: Size.screenWidth, height: 320)
static let recommendCellSize = CGSize(width: Size.screenWidth, height: 100)
}

Expand Down Expand Up @@ -117,6 +117,7 @@ final class ProfileTestResultViewController : UIViewController {
private func configUI() {
profileTestResultCollectionView.backgroundColor = .white
view.backgroundColor = .white
profileTestResultCollectionView.showsVerticalScrollIndicator = false
}

private func render() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ final class ProfileViewController : UIViewController {
private func setup(){
setDelegate()
registerCell()
profileMainCollectionView.showsVerticalScrollIndicator = false
navigationBarView.moveToSettingViewController = { [self] in
let profileSettingViewController = ProfileSettingViewController()
navigationController?.pushViewController(profileSettingViewController, animated: true)
Expand Down

0 comments on commit b1a2a95

Please sign in to comment.