3

共有拡張機能を使用して Web ページにアクセスし、そのコンテンツを操作する方法を見つけようとしています。私はドキュメンテーションkUTTypePropertyListに従いましたが、私が想定していたように 準拠しているアイテムが見当たらないので、何かが欠けているに違いありません。

私の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>en</string>
    <key>CFBundleDisplayName</key>
    <string>WebOutLoudExtension</string>
    <key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundleIdentifier</key>
    <string>com.bretlester.WebsiteReader.$(PRODUCT_NAME:rfc1034identifier)</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>$(PRODUCT_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>XPC!</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>NSExtension</key>
    <dict>
        <key>NSExtensionAttributes</key>
        <dict>
            <key>NSExtensionActivationRule</key>
            <dict>
                <key>NSExtensionActivationSupportsWebPageWithMaxCount</key>
                <integer>1</integer>
                <key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
                <integer>1</integer>
                <key>NSExtensionJavaScriptPreprocessingFile</key>
                <string>ExtensionPreProcessing</string>
            </dict>
        </dict>
        <key>NSExtensionMainStoryboard</key>
        <string>MainInterface</string>
        <key>NSExtensionPointIdentifier</key>
        <string>com.apple.share-services</string>
    </dict>
</dict>
</plist>

私の ExtensionPreProcessing は次のようになります。

ExtensionPreprocessingJS = {
run : function(arguments) {
    arguments.completionFunction({"hello":"world"});
},
finalize : function(arguments) {
    document.body.style.backgroundColor = 'red';
}
};

最後に、私の ShareViewController は次のようになります。

class ShareViewController: UIViewController, NSExtensionRequestHandling {


override func viewDidLoad() {

    let identifierType = NSString(format: kUTTypePropertyList, NSUTF8StringEncoding)

    for (item: NSExtensionItem) in self.extensionContext?.inputItems as [NSExtensionItem] {
        for (itemProvider: NSItemProvider) in item.attachments as [NSItemProvider] {
            if itemProvider.hasItemConformingToTypeIdentifier(identifierType) {
                println("why doesn't this happen?")
            }
        }
    }

}

override func viewDidAppear(animated: Bool) {


}

override func beginRequestWithExtensionContext(context: NSExtensionContext) {
    super.beginRequestWithExtensionContext(context)

    let identifierType = NSString(format: kUTTypePropertyList, NSUTF8StringEncoding)

    //println(self.extensionContext?.inputItems)
    for (item: NSExtensionItem) in context.inputItems as [NSExtensionItem] {
        for (itemProvider: NSItemProvider) in item.attachments as [NSItemProvider] {
            if itemProvider.hasItemConformingToTypeIdentifier(identifierType) {
                println("why doesn't this happen?")
            }
        }
    }

}

}

私の println ステートメントに注目してください。それらは決して実行されません。私は基本的に、物事が機能しているというある種の確認を探しています。私の共有拡張機能は Safari に表示されますが、カスタム JavaScript が実行されていないようです。誰かが私が間違っていることを見つけてくれることを願っています。前もって感謝します

4

1 に答える 1

3

JS が実行されていないことは正しいです。Info.plist の構成が原因です。ではなく、NSExtensionJavaScriptPreprocessingFileのサブキーである必要があります。何かのようなものNSExtensionAttributesNSExtensionActivationRule

<key>NSExtension</key>
<dict>
    <key>NSExtensionAttributes</key>
    <dict>
        <key>NSExtensionJavaScriptPreprocessingFile</key>
        <string>ExtensionPreProcessing</string>
        <key>NSExtensionActivationRule</key>
        <dict>
            <key>NSExtensionActivationSupportsWebPageWithMaxCount</key>
            <integer>1</integer>
            <key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
            <integer>1</integer>
        </dict>
    </dict>
    <key>NSExtensionMainStoryboard</key>
    <string>MainInterface</string>
    <key>NSExtensionPointIdentifier</key>
    <string>com.apple.share-services</string>
</dict>
于 2015-02-23T18:50:21.937 に答える