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

물건 목록 보여주기 #14

Closed
wants to merge 2 commits into from
Closed

물건 목록 보여주기 #14

wants to merge 2 commits into from

Conversation

oddukgi
Copy link
Collaborator

@oddukgi oddukgi commented Nov 5, 2022

🙋🏻‍♀️ 리뷰어님께 🙋🏻

UIKIt을 사용하여 화면을 구성하였습니다. 더미 데이터를 만들어서 테이블뷰에 보여주었습니다.

📚 작업 사항

  • 탭바 만들기 - iOS15, iOS13 버전 별로 UI적용
  • 테이블뷰를 사용하여, 목록 보여주기

🌤 고민과 해결

번들에 있는 복수의 이미지 파일을 가져오는 부분에서 막혔습니다.
번들에서 파일 확장자를 넣어서 경로를 가져오는 부분을 알아내서 코드를 수정하였습니다.

extension Bundle {

    class func getFilePathsFromBundle(bundleName: String, folderName: String, fileType: String) -> [String] {
        guard let path = Bundle.normalModule(bundleName)?.path(forResource: folderName, ofType: nil) else {
            return []
        }
        self.bundle = Bundle(path: path)
        guard let paths = bundle?.paths(forResourcesOfType: fileType, inDirectory: nil) else { return [] }
        
        return paths
    }

    }

🚀 실행 화면

Main

@oddukgi oddukgi added the 📱 design UI 관련 코드 수정 label Nov 5, 2022
@oddukgi oddukgi self-assigned this Nov 5, 2022
@oddukgi oddukgi changed the title 물건 목록 보여주기 #10 물건 목록 보여주기 Nov 5, 2022
@oddukgi oddukgi linked an issue Nov 5, 2022 that may be closed by this pull request
2 tasks
@oddukgi oddukgi closed this Nov 5, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📱 design UI 관련 코드 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

물건 목록 보여주기
1 participant