将我的iphone应用程序添加为设备中的内容菜单

时间:2013-07-30 06:59:05

标签: iphone ios objective-c

我需要安装我的iPhone应用程序作为快捷方式 如果用户长时间触摸电子邮件附件中的图片,此选项应与“打印”“保存到相机胶卷”“Facebook”一起显示“Twitter”等  谁能帮我这个?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

如果您希望应用打开.png,.jpeg或.pg类型的文件,则必须在文件的Info.plist中列出文档类型键,如下所示:

<key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeName</key>
            <string>files</string>
            <key>LSHandlerRank</key>
            <string>Owner</string>
            <key>LSItemContentTypes</key>
            <array>
                <string>.png</string>
                <string>.jpegf</string>
                <string>.jpg</string>
            </array>
        </dict>
    </array>

参见:
http://developer.apple.com/library/ios/#documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/RegisteringtheFileTypesYourAppSupports.html