Iphone 无法从电子邮件打开应用程序中的文件

Iphone 无法从电子邮件打开应用程序中的文件,iphone,Iphone,我已经设法让我的应用程序通过电子邮件将其数据库副本发送给我自己,但现在当我尝试重新打开它时,它会显示“在我的应用程序中打开”,但什么也不做。这是我的信息列表中的内容 <key>UTExportedTypeDeclarations</key> <array> <dict> <key>UTTypeIdentifier</key> <string>com.darcapps.mya

我已经设法让我的应用程序通过电子邮件将其数据库副本发送给我自己,但现在当我尝试重新打开它时,它会显示“在我的应用程序中打开”,但什么也不做。这是我的信息列表中的内容

<key>UTExportedTypeDeclarations</key>
<array>
    <dict>
        <key>UTTypeIdentifier</key>
        <string>com.darcapps.myapp.lb</string>
        <key>UTTypeDescription</key>
        <string>myapp backup</string>
        <key>UTTypeTagSpecification</key>
        <dict>
            <key>public.filename-extension</key>
            <string>lb</string>
            <key>public.mime-type</key>
            <string>application/myapp</string>
        </dict>
        <key>UTTypeConformsTo</key>
        <array>
            <string>public.data</string>
        </array>
    </dict>
</array>
<key>CFBundleDocumentTypes</key>
<array>
    <dict>
        <key>CFBundleTypeName</key>
        <string>myapp backup</string>
        <key>LSHandlerRank</key>
        <string>Owner</string>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>LSItemContentTypes</key>
        <array>
            <string>com.darcapps.myapp.lb</string>
        </array>
    </dict>
</array>
UTExportedTypeDeclarations
UTTypeIdentifier
com.darcapps.myapp.lb
UTTypeDescription
myapp备份
Uttypetag规范
public.filename-extension
磅
public.mime-type
应用程序/myapp
Uttypecommisto
公共数据
CbundleDocumentTypes
CbundleTypeName
myapp备份
伊斯汉德兰克
所有者
CbundleTypeRole
编辑
lsItemContentType
com.darcapps.myapp.lb
另一件我不确定的事情是
com.mycompany.myapp.extName
我必须把这些放在任何地方吗?我需要在任何地方设置一个设置来告诉它我的应用程序叫什么,我的公司是什么?
感谢您切换到xcode 4,这使整个过程变得更简单