-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feat] #257 - textField Builder 구현 #274
[Feat] #257 - textField Builder 구현 #274
Conversation
.build() | ||
} | ||
|
||
static func buildSerachTetField() -> UITextField { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p2:
여기 오타용 ~~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.setLeftViewRect(forInsets: .init(top: 0, | ||
left: 15, | ||
bottom: 0, | ||
right: -15) | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p4:
요거 한 줄로 해도 되지 않을까욤 ??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
좋습니다 ~~~
비대면 회의 하면서 코드리뷰 같이 해서 더 이상 남길건 없는 것 같아유 ~~
835bd0b
into
refactoring/#253-design-system
🌁 Background
📱 Screenshot
👩💻 Contents
로그인 뷰에 있는 textField는 빌더 패턴으로 구현하지 않은 이유는 ??!!?!
빌더 패턴은 복잡한 객체의 생성 과정을 추상화하여 객체를 단계적으로 구성할 수 있는 디자인 패턴입니다. 그러나 로그인 뷰처럼 UI가 사용자 상호작용에 따라 동적으로 변경될 수 있는 경우, 빌더 패턴의 제한이 있을 수 있습니다. 따라서 저는 초기에 로그인 뷰의 textField도 빌더 패턴으로 구현하려 했지만, 객체 생성 과정이 유연하게 대응할 수 있는 패턴을 선택해야 한다고 판단하여, 홈과 검색 뷰의 textField만 빌더 패턴으로 구현했슴돵~,~
✅ Testing
#257 풀땡겨 보세염
📝 Review Note
버튼 클릭 시 발생하는 액션과 텍스트의 비동기 로직은 나중에 다시 구현할 예정입니다.
📣 Related Issue
📬 Reference