본문 바로가기
[iOS] 앱이 지원하는 File Type 등록하고 처리하기 [iOS] 앱이 지원하는 File Type 등록하고 처리하기 -https://developer.apple.com/library/content/documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/RegisteringtheFileTypesYourAppSupports.html#//apple_ref/doc/uid/TP40010411-SW1 CFBundleDocumentTypes 를 Info.plist 에 포함시켜야 한다.이 key 에 대한 값은 dictionary 의 array 형태를 갖는다.각 dictionary 는 처리할 파일에 대한 정보를 갖는다.한 dictionary 에 여러 개의 파일 타입을 정의할 수도 있다.. 2018. 2. 20.
[Objective-C] 어플리케이션 구조 [Objective-C] 어플리케이션 구조 출처 : OS X 구조를 이해하면서 배우는 Objective-C Chap 16. Notice : 정리자(돼지왕 왕돼지)가 remind 하고 싶은 내용이나 모르는 내용 기반으로 정리하는 것이기 때문에 구체적인 내용은 책을 사서 보시기를 권장드립니다. 16.1. 애플리케이션 번들 * 16.1.1. 애플리케이션 번들 구조 -Cocoa 앱은 실행 파일이나 필요한 리소스 일체가 하나의 디렉토리 구성으로 저장된다.이것을 앱 번들(application bundle), 앱 랩퍼(wrapper) 또는 앱 패키지라고 부른다. -Mac OS X 는 서브 디렉터리가 많이 작성되지만, iOS는 실행 파일이나 각종 리소스도 비교적 구별 없이 저장된다.양쪽에 Info.plist 파일이 있.. 2018. 1. 8.
[ios] Solution for "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection" [ios] Solution for "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection" -Add following to "info.plist"NSAppTransportSecurity NSDictionary NSAllowsArbitraryLoads BOOL YES -The reason why such error appears is that Apple decided to support only secure connection (https) by default.So above solution is temporary, and it is recommended .. 2017. 10. 26.
반응형