From 98093a19cdbaf4e372b7caafc0c0d17186931e01 Mon Sep 17 00:00:00 2001 From: Melt Date: Sun, 23 Apr 2023 00:00:05 +0900 Subject: [PATCH] =?UTF-8?q?[Chore]=20=EC=98=A4=ED=83=80=EC=88=98=EC=A0=95?= =?UTF-8?q?=20#8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SOPTving/SOPTving/Presentation/AuthScene/VC/SignInVC.swift | 3 +-- .../profile_tving.cute.imageset/Contents.json | 6 +++--- SOPTving/SOPTving/Utility/Builder/ButtonBuilder.swift | 2 +- SOPTving/SOPTving/Utility/Builder/ViewBuilder.swift | 4 ++-- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/SOPTving/SOPTving/Presentation/AuthScene/VC/SignInVC.swift b/SOPTving/SOPTving/Presentation/AuthScene/VC/SignInVC.swift index 4e874c9..3237cb2 100644 --- a/SOPTving/SOPTving/Presentation/AuthScene/VC/SignInVC.swift +++ b/SOPTving/SOPTving/Presentation/AuthScene/VC/SignInVC.swift @@ -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) } } diff --git a/SOPTving/SOPTving/Resource/Assets.xcassets/profile_tving.cute.imageset/Contents.json b/SOPTving/SOPTving/Resource/Assets.xcassets/profile_tving.cute.imageset/Contents.json index fd92307..6eb4143 100644 --- a/SOPTving/SOPTving/Resource/Assets.xcassets/profile_tving.cute.imageset/Contents.json +++ b/SOPTving/SOPTving/Resource/Assets.xcassets/profile_tving.cute.imageset/Contents.json @@ -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" } diff --git a/SOPTving/SOPTving/Utility/Builder/ButtonBuilder.swift b/SOPTving/SOPTving/Utility/Builder/ButtonBuilder.swift index 5c4b563..aa805d9 100644 --- a/SOPTving/SOPTving/Utility/Builder/ButtonBuilder.swift +++ b/SOPTving/SOPTving/Utility/Builder/ButtonBuilder.swift @@ -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 } diff --git a/SOPTving/SOPTving/Utility/Builder/ViewBuilder.swift b/SOPTving/SOPTving/Utility/Builder/ViewBuilder.swift index a401447..570e4e9 100644 --- a/SOPTving/SOPTving/Utility/Builder/ViewBuilder.swift +++ b/SOPTving/SOPTving/Utility/Builder/ViewBuilder.swift @@ -8,7 +8,7 @@ import UIKit protocol ViewBuildable { - func setBackGroundColor(_ color: UIColor) -> Self + func setBackgroundColor(_ color: UIColor) -> Self func setCornerRadius(_ radius: CGFloat) -> Self } @@ -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 }