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

페이지 분배 로직 오류로 잘못된 결과 표시 #106

Closed
zaehorang opened this issue Nov 27, 2024 · 0 comments · Fixed by #108
Closed

페이지 분배 로직 오류로 잘못된 결과 표시 #106

zaehorang opened this issue Nov 27, 2024 · 0 comments · Fixed by #108
Assignees

Comments

@zaehorang
Copy link
Collaborator

zaehorang commented Nov 27, 2024

Description

페이지 분배 로직에 오류가 있어, 예상과 다른 결과가 표시되고 있습니다.


To Reproduce

버그를 재현하는 단계를 설명해주세요.

  1. 책을 등록할 때, 읽을 범위를 101~500페이지로 설정 (전체 페이지는 400페이지).
  2. 읽을 기간을 4일로 설정 (400 ÷ 4 = 100으로 하루에 100페이지씩 할당).
  3. 초기 등록 시 로그에는 페이지 할당이 정상적으로 표시되지만, 실제 화면에서는 잘못된 결과가 나타납니다.
  • 예상 이유: SwiftData에 저장하는 시점과 불러오는 시점이 다르다?

Expected behavior

101~500 페이지를 4일 동안 읽는 경우, 각 날 할당되는 마지막 페이지는 아래와 같아야 합니다:

  • 첫째 날: 200
  • 둘째 날: 300
  • 셋째 날: 400
  • 넷째 날: 500

Screenshots

가능하다면 스크린샷을 첨부해주세요.

image image
  • (+) 페이지 글자 잘림 이슈..

Smartphone (please complete the following information)

  • Device: [e.g. iPhone15Pro]
  • OS: [e.g. iOS17.2]

Additional context

현재 로직에서 500 - 101 + 1로 전체 페이지를 계산하고 나머지를 분배하고 있으나, 아래와 같은 방식으로 계산하는 것이 적절합니다:

  1. 총 페이지 수: 501 - 101 = 400
  2. 하루에 읽어야 할 페이지 수: 400 ÷ 4 = 99 (나머지 3은 분배).
  3. 페이지 할당 방식:
    • 첫째 날: 101 + 99 = 200
    • 둘째 날: 200 + 99 + 1 = 300
    • 셋째 날: 300 + 99 + 1 = 400
    • 넷째 날: 400 + 99 + 1 = 500
@zaehorang zaehorang self-assigned this Nov 27, 2024
zaehorang added a commit that referenced this issue Nov 27, 2024
…location-logic-issue

[#106] 페이지 계산 시 초기 페이지가 0으로 설정되는 이슈 해결
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant