-
Notifications
You must be signed in to change notification settings - Fork 21
[Downey] SignUpView 구조 재설계 #23
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
Open
dahun-lee-daji
wants to merge
15
commits into
code-squad:dahun-lee-daji
Choose a base branch
from
dahun-lee-daji:PrivacyView
base: dahun-lee-daji
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
eb25db1
불필요 코드 삭제, method명 변경
dahun-lee-daji bb74bbc
Custom TextField 정의
dahun-lee-daji fed1c7b
InfromationLabel 속성 설정 메소드 제거
dahun-lee-daji 3268fbc
메소드 명 변경, IBOutletCollection 타입 변경
dahun-lee-daji 0296125
ComplianceChecker로직 변경
dahun-lee-daji 9f47314
observer pattern 삭제
dahun-lee-daji f63b565
Observer Pattern 잔여 코드 삭제
dahun-lee-daji 90f53e9
불필요한 코드 제거
dahun-lee-daji 7cd6c62
정규 표현식 메소드 분리
dahun-lee-daji 88f6c3f
폴더정리, 에러의 다형성 구현
dahun-lee-daji 1b15ca0
NetworkManager: Singleton, serialize 기능 분리
dahun-lee-daji 02f9dc6
네트워크 요청에서 판단 로직 분리
dahun-lee-daji b51b618
postUser Result<>적용
dahun-lee-daji a34f127
UI Update 주체 변경
dahun-lee-daji d0d9a00
반복되는 내용 메서드화
dahun-lee-daji File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+11.2 KB
(120%)
...codeproj/project.xcworkspace/xcuserdata/idahun.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| // | ||
| // Notification.name+Extension.swift | ||
| // SignUp | ||
| // | ||
| // Created by 이다훈 on 2021/04/04. | ||
| // | ||
|
|
||
| import Foundation | ||
|
|
||
| extension Notification.Name { | ||
| static let uiUpdate = Notification.Name.init("uiUpdate") | ||
| static let nextButtonEnableCheck = Notification.Name.init("nextButtonEnableCheck") | ||
| } | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
이 노티는 누가 보내는 건가요? 누가 받는건가요?
어느 타입과 관련이 높을까요? 응집도를 높여서 타입에 선언하는 걸 고려해보세요.
extension 자체가 이 노티와 관련된 타입에 있으면 좋습니다.