Skip to content

Commit

Permalink
[Chore] 오타수정 #8
Browse files Browse the repository at this point in the history
  • Loading branch information
meltsplit committed Apr 22, 2023
1 parent 99b9d7a commit 98093a1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions SOPTving/SOPTving/Presentation/AuthScene/VC/SignInVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ extension SignInVC {
@objc
private func signInButtonDidTap() {
let mainVC = MainVC()
guard let name = idTextField.text else { return }
mainVC.dataBind(name)
//guard let name = idTextField.text else { return }
UIApplication.shared.changeRootViewController(mainVC)
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"images" : [
{
"filename" : "스크린샷_2023-04-13_오전_3.57.44-removebg-preview 3.png",
"filename" : "스크린샷_2023-04-13_오전_3.57.44-removebg-preview 3.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "스크린샷_2023-04-13_오전_3.57.44-removebg-preview 4.png",
"filename" : "스크린샷_2023-04-13_오전_3.57.44-removebg-preview 4.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "스크린샷_2023-04-13_오전_3.57.44-removebg-preview.png",
"filename" : "스크린샷_2023-04-13_오전_3.57.44-removebg-preview.png",
"idiom" : "universal",
"scale" : "3x"
}
Expand Down
2 changes: 1 addition & 1 deletion SOPTving/SOPTving/Utility/Builder/ButtonBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ final class ButtonBuilder: ButtonBuildable {
//MARK: Custom Method

@discardableResult
func setBackGroundColor(_ color: UIColor) -> Self {
func setBackgroundColor(_ color: UIColor) -> Self {
button.backgroundColor = color
return self
}
Expand Down
4 changes: 2 additions & 2 deletions SOPTving/SOPTving/Utility/Builder/ViewBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import UIKit

protocol ViewBuildable {
func setBackGroundColor(_ color: UIColor) -> Self
func setBackgroundColor(_ color: UIColor) -> Self
func setCornerRadius(_ radius: CGFloat) -> Self
}

Expand All @@ -32,7 +32,7 @@ class ViewBuilder: ViewBuildable {
//MARK: Custom Method

@discardableResult
func setBackGroundColor(_ color: UIColor) -> Self {
func setBackgroundColor(_ color: UIColor) -> Self {
view.backgroundColor = color
return self
}
Expand Down

0 comments on commit 98093a1

Please sign in to comment.