我们希望允许开发人员通过 UIActivity 将图像发送到我们的应用程序。
我们如何设置我们的应用程序来支持这一点?
您的应用需要注册它支持的文件类型。要注册文件类型,您的应用程序必须在其 Info.plist 属性列表文件中包含 CFBundleDocumentTypes 键。有关更多信息,请参阅Apple 文档。
<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>