我可以使用链接example://abc
成功打开我的应用。
但是我需要在URI的末尾捕获abc
个参数。
这是应用的代码
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" applicationDPI="240"
creationComplete="creationComplete(event)">
<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
protected function creationComplete(event:FlexEvent):void
{
NativeApplication.nativeApplication.addEventListener(BrowserInvokeEvent.BROWSER_INVOKE, onInvokeEvent);
}
private function onInvokeEvent(e:BrowserInvokeEvent):void
{
var arguments:Array = e.arguments;
testLabel.text = "Args passed" //This never happens
}
]]>
</fx:Script>
<s:Label id="testLabel" x="56" y="163" text="Testing invocation"/>
</s:Application>
我还确保对app.xml文件进行了这些更改:
<allowBrowserInvocation>true</allowBrowserInvocation>
<iPhone>
<InfoAdditions><![CDATA[
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>example</string>
</array>
<key>CFBundleURLName</key>
<string>com.example.app</string>
</dict>
</array>
]]></InfoAdditions>
</iPhone>
我需要进行哪些更改才能捕获此应用的参数?
答案 0 :(得分:1)
因为我是从另一个应用程序(Calendar)启动应用程序,所以我需要使用InvokeEvent而不是BrowserInvokeEvent。