I need to make some changes to my settings.pList to register my Apps ability to recieve the .docx document type.
I have attached this below example but have a few questions for anyone that may have attempted this.
1. Do I need to declare images as its a known file type to IOS? If I don't need it do I just remove that Key?
2. When modifying the pList do I just add this to the end of the file, before the final </plist> key?
Code: Select all
<dict>
<key>CFBundleTypeName</key>
<string>My File Format</string>
<key>CFBundleTypeIconFiles</key>
<array>
<string>MySmallIcon.png</string>
<string>MyLargeIcon.png</string>
</array>
<key>LSItemContentTypes</key>
<array>
<string>com.example.myformat</string>
</array>
<key>LSHandlerRank</key>
<string>Owner</string>
</dict>