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

이미지 관련 QA 해결 #147

Merged
merged 8 commits into from
Dec 4, 2024
Merged

이미지 관련 QA 해결 #147

merged 8 commits into from
Dec 4, 2024

Conversation

k2645
Copy link
Collaborator

@k2645 k2645 commented Dec 4, 2024

#️⃣ 연관된 이슈


⏰ 작업 시간

예상 시간 실제 걸린 시간
2 3

📝 작업 내용

  • 폴라로이드 뷰 내부 사진 및 TextField AutoLayout 수정
  • 폴라로이드 뷰 TextField 50자 글자 제한
  • 커스텀 앨범에서 Local에 존재하지 않고 iCloud에 있는 사진 불러와지지 않는 오류 수정
  • 커스텀 앨범 스크롤 빠르게 할 시 이상한 이미지가 들어가는 오류 해결
  • 앨범 커버 수정 시 내용 사라지는 오류 해결

📸 스크린샷

폴라로이드 뷰 (SE) 폴라로이드 뷰 (iPhone 16 Pro)
폴라로이드 뷰 Caption (50자 제한) 오래된 사진 불러오기

⚽️ 트러블 슈팅

오래된 사진이라 iCloud에만 존재하고 Local에는 존재하지 않는 사진의 경우 PHImageRequestOptionsisNetworkAccessAllowed를 true로 설정해줘야한다.

private let imageRequestOptions: PHImageRequestOptions = {
    let options = PHImageRequestOptions()
    options.isSynchronous = true
    options.isNetworkAccessAllowed = true
    options.deliveryMode = .highQualityFormat
    
    return options
}()

@k2645 k2645 added 🛠️ Fix 오류, 버그 수정 👷‍♂️ Refactor 코드 개선, 가독성 개선, 주석 labels Dec 4, 2024
@k2645 k2645 added this to the 0.5 milestone Dec 4, 2024
@k2645 k2645 self-assigned this Dec 4, 2024
@k2645 k2645 linked an issue Dec 4, 2024 that may be closed by this pull request
Copy link
Collaborator

@yuncheol-AHN yuncheol-AHN left a comment

Choose a reason for hiding this comment

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

고생하셨습니다아~

private let imageRequestOptions: PHImageRequestOptions = {
let options = PHImageRequestOptions()
options.isSynchronous = true
options.isNetworkAccessAllowed = true
Copy link
Member

Choose a reason for hiding this comment

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

문제의 한 줄..

Copy link
Member

@Kyxxn Kyxxn left a comment

Choose a reason for hiding this comment

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

고생하셨습니더

@k2645 k2645 merged commit 143de4b into develop Dec 4, 2024
2 checks passed
@k2645 k2645 deleted the fix/image-qa branch December 4, 2024 19:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🛠️ Fix 오류, 버그 수정 👷‍♂️ Refactor 코드 개선, 가독성 개선, 주석
Projects
None yet
Development

Successfully merging this pull request may close these issues.

이미지 관련 QA
3 participants