From d12cfe8b9d1edc6887b2f66150490bfe53b2f002 Mon Sep 17 00:00:00 2001 From: jonnwon Date: Fri, 5 Apr 2024 00:15:35 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat=09=20=20=20=20:=20textView=20=ED=82=A4?= =?UTF-8?q?=EB=B3=B4=EB=93=9C=20=ED=83=80=EC=9E=85=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - AddBookmarkView 내 nameTextView 의 키보드 타입을 .defualt 로 변경 - AddBookmarkView 내 urlTextView 의 키보드 타입을 .URL 로 변경 --- iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift b/iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift index 6b4a942..85a684c 100644 --- a/iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift +++ b/iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift @@ -41,7 +41,7 @@ class AddBookmarkView: UIView { $0.font = .cellTitleFont $0.textColor = .label $0.isScrollEnabled = true - $0.keyboardType = .emailAddress + $0.keyboardType = .default $0.autocorrectionType = .no } @@ -64,6 +64,7 @@ class AddBookmarkView: UIView { $0.isScrollEnabled = true $0.keyboardType = .emailAddress $0.autocorrectionType = .no + $0.keyboardType = .URL } private let button = UIButton(type: .custom).then { From 007660bf9822439b4a54bad1f16357a80b932da8 Mon Sep 17 00:00:00 2001 From: jonnwon Date: Fri, 5 Apr 2024 00:47:20 +0900 Subject: [PATCH 2/2] =?UTF-8?q?refactor=20=20:=20urlTextView=EB=82=B4=20?= =?UTF-8?q?=EA=B8=B0=EC=A1=B4=20=ED=82=A4=EB=B3=B4=EB=93=9C=20=ED=83=80?= =?UTF-8?q?=EC=9E=85=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift b/iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift index 85a684c..46cecf8 100644 --- a/iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift +++ b/iBox/Sources/BoxList/AddBookmark/AddBookmarkView.swift @@ -62,9 +62,8 @@ class AddBookmarkView: UIView { $0.font = .cellTitleFont $0.textColor = .label $0.isScrollEnabled = true - $0.keyboardType = .emailAddress - $0.autocorrectionType = .no $0.keyboardType = .URL + $0.autocorrectionType = .no } private let button = UIButton(type: .custom).then {