Skip to content
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

[Fix] HomeScreen 열람실 이용시 이전시간을 차감합니다. #126

Merged
merged 4 commits into from
Dec 8, 2024

Conversation

Seokki-Kwon
Copy link
Contributor

AS-IS

TO-BE

열람실 이용과 관련한 오류들을 수정하면서 관련된 문제들도 같이 처리했습니다.

KEY-POINT

수정 사항

  • 열람실 이용시 이전시간을 선택한 경우 이전시간 만큼을 차감하고 남은시간을 반영합니다.
  • 열람실 이용종료시 프로그레스바가 화면을 넘어가는 현상을 수정했습니다.
  • 열람실 이용시작시 부여된 스타가 사라지는 현상을 수정했습니다.

시간계산 로직 수정

let timeDiff = Date().timeIntervalSince(startTime)
let timeDiffMinutes = TimeInterval(minutes: Int(timeDiff / 60))
let endTime = startTime + addedTime
let remainingTime = endTime.timeIntervalSince(startTime) - timeDiffMinutes

현재시간부터 시작시간 까지의 timeDiff를 분단위로 계산하여 해당 시간만큼 남은시간을 차감하도록 변경했습니다.

SCREENSHOT (Optional)

RPReplay_Final1733374554.mov

@Seokki-Kwon Seokki-Kwon added 🛠️ Fix 버그 수정 🎨 UI UI 관련 labels Dec 5, 2024
@Seokki-Kwon Seokki-Kwon self-assigned this Dec 5, 2024
Copy link
Contributor

@Choe-ju Choe-ju left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확인했습니다 고생하셨습니다!

@Seokki-Kwon Seokki-Kwon merged commit 080e31c into develop Dec 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🛠️ Fix 버그 수정 🎨 UI UI 관련
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants