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
http://osxdaily.com/2016/03/10/convert-plist-file-xml-binary-mac-os-x-plutil/