iOS192 [iOS] Bundle Apple Developer Documentation developer.apple.com [iOS - swift] 번들과 패키지(Bundle, package), Framework 개념 Bundle이란 실행 가능한 코드와 그 코드가 사용하는 자원을 포함하고 있는 디렉토리 가지고 있는 내용 - info.plist, assets, string 파일 등 프레임워크 번들은 dynamic library에서 사용하는 코드와 자원을 ios-development.tistory.com Bundle Bundle은 disk에 저장된 번들 디렉토리에 있는 리소스와 코드의 표현이다. 즉, 실행 가능한 코드와 코드가 사용하는 리소스들을 포함하고 있는 디렉토리. info.plist, Assets, string 파일 등 framewo.. 2022. 4. 22. [iOS] 앱 terminate되게 하는 법 앱 terminate되게 하는 법 app이 terminate될 때 어떤 기능을 집어넣고 테스트를 해야되는 상황에서 사용 가능한 방법 info.plist에서 'Application does not run in background'를 활성화 시킨다. 그럼 앱이 백그라운드 상태로 진입하자마자 terminate되면서 종료된다. func applicationWillTerminate(_ application: UIApplication) { print("will terminate") } 2022. 4. 22. [iOS] 레이아웃 update cycle [iOS] Update Cycle: 뷰 업데이트 메소드 iOS 개발을 하면서 매일 뷰와 사용자와 interaction이 가능한 다양한 UI Components를 만들지만 "View Rendnering" 에 대한 이해가 부족함을 느꼈습니다. View에 대한 이해가 부족하니 문제 해결도 잘 안됐던 sueaty.tistory.com [번역] iOS 레이아웃의 미스터리를 파헤치다 iOS의 UIView가 그려지는 과정과 메소드들을 살펴봅니다. medium.com Main Run Loop main run loop는 유저로부터 모든 input 이벤트를 받고 적절한 응답을 해준다. 때문에 유저가 발생시킨 모든 상호작용은 event queue에 추가되고 Application object는 event queue로부터 이벤.. 2022. 4. 18. [iOS] autoresizingMask iOS ) translatesAutoresizingMaskIntoConstraints 안녕하세요 :) Zedd입니다. 오늘은...! translatesAutoresizingMaskIntoConstraints..!을 정확히 알아보는 공부~.~ translatesAutoresizingMaskIntoConstraints 사실 엄청 많이 보셨을 코드에요. self.view.trans.. zeddios.tistory.com autoresizingMask superview의 bound가 변할 때, receiver스스로 size를 변경할 수 있게 하는 integer bit mask이다. 특정 view의 bound가 변하면, view는 자동으로 subview 각자의 autoreSizing mask에 따라서 subvie.. 2022. 4. 16. 이전 1 ··· 19 20 21 22 23 24 25 ··· 48 다음