Skip to content

Commit

Permalink
➕[ADD] : #139 차 이미지 에셋 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
comeheredart committed Sep 25, 2021
1 parent 745acac commit 140aa7f
Show file tree
Hide file tree
Showing 9 changed files with 64 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "animation.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "Vector 623.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "Vector [email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "Vector [email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 18 additions & 1 deletion ChaRo-iOS/ChaRo-iOS/Source/Views/VCs/SignScene/JoinVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ class JoinVC: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
setupCollectionView()
setupNavigationBar()
configureUI()
self.view.addSubview(navBar)

}

override func viewWillAppear(_ animated: Bool) {
Expand All @@ -88,6 +89,7 @@ class JoinVC: UIViewController {
//네비게이션 바 숨기기
}


private func setupCollectionView() {
collectionView.delegate = self
collectionView.dataSource = self
Expand All @@ -96,6 +98,21 @@ class JoinVC: UIViewController {

}

private func setupNavigationBar() {

var navItem = UINavigationItem(title: "회원가입")

self.view.addSubview(navBar)

let titleLabel = UILabel().then {
$0.text = "회원가입"
$0.font = .notoSansRegularFont(ofSize: 17)
}

navItem.titleView = titleLabel
navBar.items = [navItem]
}

private func configureUI() {

view.addSubview(collectionView)
Expand Down

0 comments on commit 140aa7f

Please sign in to comment.