#PropertyListEncoder
Explore tagged Tumblr posts
Text
Codable
많은 프로그래밍 작업은 데이터를 어딘가로 전달하는 것과 관련된다. 네트워크를 통해서 전송하거나, 디스크와 같은 영구 저장소로 전달하여 기록할 수도 있다. 프로그램이 실행시간에 사용하는 데이터는 그 필요와 목적에 맞게 구조화되고 각 단위가 연결되어 입체적인 그래프를 형성하기도 하지만, 전달과정에서 만큼은 일렬로 늘어선 비트의 연속체가 되어야 한다. 따라서 필연적으로 어떤 데이터가 유용성을 가지려면 직렬화 될 수 있어야 하고 그 반대로 역직렬화도 가능해야 한다.
이러한 직렬화 / 역직렬화와 관련하여 Foundation은 오래전부터 NSCoding이라는 기술을 보유하고 있었다. 이는 간단하게 가장 기본이 되는 몇 가지 타입이 인코딩이 가능하다면, 각 객체의 속성을 키-값 쌍으로 묶어서 인코딩할 수 있다는…
View On WordPress
0 notes
Text
Price: [price_with_discount] (as of [price_update_date] - Details) [ad_1] Learn how to store data in a device from an iOS application. After reading this guide, you will know how to store user's settings, how to create and manage files, and how to encode and decode content to store structured data on files. Table of Contents STORAGE User Preferences User Defaults Files File Manager URLs and Paths Files and Directories Files Attributes Files Content Bundle Archiving Encoding and Decoding Real-Life Application QUICK REFERENCE UserDefaults FileManager URL String Bundle NSKeyedArchiver NSKeyedUnarchiver PropertyListEncoder PropertyListDecoder This guide assumes that you have a basic knowledge of app development, Xcode, and the Swift language. You should also know how to create and display Table Views. If you don't know how to program in Swift, how to work with Table Views, or how to create an application with Xcode, download our guides Introduction to Swift, Table Views and Collection Views, and Interface Builder. For a complete course on app development for iOS, read our book iOS Apps for Masterminds. This guide is a collection of excerpts from the book iOS Apps for Masterminds. The information included in this guide will help you understand a particular aspect of app development in iOS, but it will not teach you everything you need to know to develop an app for Apple devices. If you need a complete course on app development for iOS, read our book iOS Apps for Masterminds. For more information, visit our website at www.formasterminds.com. ASIN : B078RV988T Language : English File size : 368 KB Text-to-Speech : Enabled Enhanced typesetting : Enabled X-Ray : Not Enabled Word Wise : Not Enabled Print length : 61 pages [ad_2]
0 notes