From 6289bc6131e54628ebc618104e871cdf1073bae4 Mon Sep 17 00:00:00 2001 From: hyun99999 Date: Sat, 15 Apr 2023 20:46:16 +0900 Subject: [PATCH] =?UTF-8?q?design:=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= =?UTF-8?q?=20=EB=B7=B0=20=EC=B2=B4=ED=81=AC=EB=B0=95=EC=8A=A4=EC=99=80=20?= =?UTF-8?q?=EB=9D=BC=EB=B2=A8=EC=9D=98=20=EC=A0=95=EB=A0=AC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20(#407)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewControllers/Update/VC/UpdateViewController.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/NADA-iOS-forRelease/Sources/ViewControllers/Update/VC/UpdateViewController.swift b/NADA-iOS-forRelease/Sources/ViewControllers/Update/VC/UpdateViewController.swift index 1b4d68d9..2e17f87e 100644 --- a/NADA-iOS-forRelease/Sources/ViewControllers/Update/VC/UpdateViewController.swift +++ b/NADA-iOS-forRelease/Sources/ViewControllers/Update/VC/UpdateViewController.swift @@ -70,7 +70,9 @@ extension UpdateViewController { checkLabel.font = .textRegular05 checkLabel.textColor = .tertiary - checkLabel.text = "확인했어요!" + let attributes: [NSAttributedString.Key: Any] = [.baselineOffset: -2.1] + let attributesString = NSAttributedString(string: "확인했어요!", attributes: attributes) + checkLabel.attributedText = attributesString updateButton.setImage(UIImage(named: "btnMainGoUpdate"), for: .normal) }