将vcard的文件types与iPhone应用程序相关联

我在我的info.plist文件中做了以下更改

<key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeName</key> <string>Visiting Card</string> <key>CFBundleTypeIconFiles</key> <array> <string>Icon.png</string> </array> <key>CFBundleTypeRole</key> <string>Editor</string> <key>LSHandlerRank</key> <string>Owner</string> <key>LSItemContentTypes</key> <array> <string>public.vcard</string> </array> </dict> </array> 

当我按住vcard附件,而不是给我一个选项,以打开它的联系人应用程序或与我的应用程序,它只是打开它与联系人应用程序…我应该如何获得选项来打开它与我的应用程序? 请尽快回复….

 <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeName</key> <string>VCard Files</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSHandlerRank</key> <string>Alternate</string> <key>LSItemContentTypes</key> <array> <string>public.vcard</string> </array> </dict> </array>