-
Notifications
You must be signed in to change notification settings - Fork 6
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] #246 - Google Analytics 코드를 추가 및 전체 코드 개선 하였습니다. #247
Merged
The head ref may contain hidden characters: "#246---GA-\uCD94\uAC00-\uAD6C\uD604"
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
7034dbf
[Fix] #246 - defer 순서 코드 추가
thingineeer 0f49f42
[Setting] #246 - GA 디버깅 모드 해제
thingineeer 7b72e1d
[Feat] #246 - 탭바 GA 이벤트 추가
thingineeer 25b9ba3
[Feat] #246 - 코스그리기 GA 이벤트 추가
thingineeer f5d1423
[Add] #246 - GAEvent 스크린 이벤트 추가
thingineeer 90cf2bd
[Feat] #246 - 코스 발견 GA 이벤트 추가
thingineeer 873d717
[Add] #246 - GAEvent 스크린 이벤트 추가
thingineeer 4ffe0f6
[Style] #246 - 네트워크 코드 포맷팅 변경
thingineeer b33448c
[Feat] #246 - 보관함 GA 이벤트 추가
thingineeer 6bd780b
[Feat] #246 - 마이페이지 GA 이벤트 추가
thingineeer a863c63
[Setting] #246 - 삼항 연산자 lint 등록
thingineeer 7a6520e
[Fix] #246 - Void 함수 삼항 연산자를 if~else로 수정
thingineeer 3367f13
[Refactor] #246 - 코스 그리기 레이아웃 함수 분할
thingineeer 8dfd99c
[Refactor] #246 - UIGestureRecognizer+ 중첩 타입 제거
thingineeer 04278b5
[Fix] #246 - Swift 권장 사양에 맞게 코드 변경 하였습니다.
thingineeer 7bc800f
[Fix] #246 - 카카오 SDK 업데이트로 인한 함수명 변경
thingineeer b8e3e1e
[Setting] #246 - fastlane team_id 변경
thingineeer 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
This file contains 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 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 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 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
6 changes: 3 additions & 3 deletions
6
Runnect-iOS/Runnect-iOS/Global/Resource/Assets.xcassets/img_banner1.imageset/Contents.json
This file contains 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
File renamed without changes
File renamed without changes
File renamed without changes
This file contains 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 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 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 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 |
---|---|---|
|
@@ -205,16 +205,20 @@ extension MarathonMapCollectionViewCell { | |
|
||
private func scrapCourse(publicCourseId: Int, scrapTF: Bool) { | ||
LoadingIndicator.showLoading() | ||
|
||
scrapProvider.request(.createAndDeleteScrap(publicCourseId: publicCourseId, scrapTF: scrapTF)) { [weak self] response in | ||
LoadingIndicator.hideLoading() | ||
defer { | ||
LoadingIndicator.hideLoading() | ||
} | ||
Comment on lines
+210
to
+212
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이 코드 설명해줄 수 있나요 ?!?! defer 키워드는 첨 보네용 👀 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Zep 설명 완료 |
||
|
||
guard let self = self else { return } | ||
|
||
switch response { | ||
case .success(let result): | ||
let status = result.statusCode | ||
if 200..<300 ~= status { | ||
print("스크랩 성공") | ||
} | ||
if status >= 400 { | ||
} else if status >= 400 { | ||
print("400 error") | ||
} | ||
case .failure(let error): | ||
|
This file contains 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 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 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 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에서 빼준 것 외에 다른 변화는 없는건가요 ??!
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.
네