Bundle Bundle
알아보자.
Bundle이란 실행가능한 코드와 자원을 포함하고 있는 디렉토리이다.
info.plist < 익숙한 그녀석과
asset < 역시나 익숙한 그녀석
이 포함되어있다.
NSBundle에서 main 번들을 찾을 수 있다.
메인 bundle은 요러한 친구이다.
별걸 다 찾을 수 있다...
대소문자에 유의하자.
활용방법 -> info.plist에 API_KEY등록
경로
let path = Bundle.main.path(forResource: "Info", ofType: "plist")
plist
let plist = NSDictionary(contentsOfFile: path)
API_KEY
let value = plist?.object(forKey: "API_KEY") as String