0

いくつかの質問を確認した後、多くのオンラインチュートリアルに従って、アプリをmime-typeに登録することができません。ここにはまだ気づいていない魔法があるに違いない気がします。私のplistファイルをドクターする以外に追加の手順はありますか?それとも私はこれを間違って医者にしましたか?

私が感じる唯一の追加の問題は、プロジェクト名を変更したことであり、ビルド設定やプロビジョニングプロファイルと一致していないものがある可能性がありますか?アーカイブされ、アドホック配布用にインストールできます。アプリに登録するためのファイルをメールで取得できません。

このファイルは、NSJSONSerializationを使用して準備したJSONデータです。

これが私のplistです:

    <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>CFBundleDevelopmentRegion</key>
            <string>English</string>
        <key>CFBundleDisplayName</key>
        <string>ClickDesigner</string>
        <key>CFBundleDocumentTypes</key>
        <array>
            <dict>
                <key>CFBundleTypeName</key>
                <string>Clicker Data Document</string>
                <key>CFBundleTypeRole</key>
                <string>Editor</string>
                <key>LSHandlerRank</key>
                <string>Owner</string>
                <key>LSItemContentTypes</key>
                <array>
                    <string>com.digitaldownbeat.clicker.clk</string>
                </array>
            </dict>
        </array>
        <key>CFBundleExecutable</key>
        <string>${EXECUTABLE_NAME}</string>
        <key>CFBundleIconFile</key>
        <string>icon.png</string>
        <key>CFBundleIcons</key>
        <dict>
            <key>CFBundlePrimaryIcon</key>
            <dict>
                <key>CFBundleIconFiles</key>
                <array>
                    <string></string>
                    <string>icon.png</string>
                    <string>icon@2x.png</string>
                </array>
            </dict>
        </dict>
        <key>CFBundleIdentifier</key>
        <string>com.digitaldownbeat.${PRODUCT_NAME}</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundleName</key>
        <string>Clicker</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleShortVersionString</key>
        <string>1.0</string>
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleURLTypes</key>
        <array>
            <dict>
                <key>CFBundleURLSchemes</key>
                <array>
                    <string>db-k6rrg6wgwv4uij1</string>
                </array>
            </dict>
            <dict>
                <key>CFBundleURLName</key>
                <string>com.digitaldownbeat.clickdesigner</string>
                <key>CFBundleURLSchemes</key>
                <array>
                    <string>clickdesigner</string>
                </array>
            </dict>
        </array>
        <key>CFBundleVersion</key>
        <string>1.0</string>
        <key>LSRequiresIPhoneOS</key>
        <true/>
        <key>LSRequiresiPhoneOS</key>
        <true/>
        <key>NSMainNibFile</key>
        <string>MainWindow</string>
        <key>UIFileSharingEnabled</key>
        <true/>
        <key>UIStatusBarStyle</key>
        <string>UIStatusBarStyleBlackTranslucent</string>
        <key>UISupportedInterfaceOrientations</key>
        <array>
            <string>UIInterfaceOrientationPortrait</string>
            <string>UIInterfaceOrientationPortraitUpsideDown</string>
        </array>
        <key>UTExportedTypeDeclarations</key>
        <array>
            <dict>
                <key>UTTypeConformsTo</key>
                <array>
                    <string>public.text</string>
                </array>
                <key>UTTypeDescription</key>
                <string>ClickDesigner Data Document</string>
                <key>UTTypeIdentifier</key>
                <string>com.digitaldownbeat.clickdesigner.clk</string>
                <key>public.filename-extension</key>
                <string>clk</string>
                <key>public.mime-type</key>
                <string>application/clickdesigner</string>
            </dict>
        </array>
    </dict>
    </plist>

あなたが提供できるどんな助けにも感謝します。

4

1 に答える 1

0

このコードをアプリの delegate.m ファイルに追加してみてください。下

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{

  NSURL *url = (NSURL *)[launchOptions valueForKey:UIApplicationLaunchOptionsURLKey];
    if (url != nil && [url isFileURL]) {}
}

これはオーディオの添付ファイルでは機能しましたが、画像ファイルに問題があります。jpg、png、tifなど

于 2013-03-15T05:32:51.027 に答える