property list 는 xml, json, binary 형태로 저장이 가능
xml 과 binary 형태의 상호 변환 방법
// binary -> xml
plutil -convert xml1 binary.plist
// xml -> binary
plutil -convert binary1 xml.plist
참고 링크
https://medium.com/@karaiskc/understanding-apples-binary-property-list-format-281e6da00dbd
Understanding Apple’s binary property list format
Property lists offer a structured and efficient way to represent and persist hierarchies of objects to disk. They are used extensively in…
medium.com
http://osxdaily.com/2016/03/10/convert-plist-file-xml-binary-mac-os-x-plutil/
How to Convert plist Files to XML or Binary in Mac OS X
Plist files contain preference specifics and properties relevant to a particular application or portion of Mac OS X system software. Depending on where the plist file is located and what function t…
osxdaily.com