0

我有以下 scxml 文件

<?xml version = "1.0"?>
<scxml version="1.0" name="statemachine" initial="initialState" xmlns="http://www.w3.org/2005/07/scxml" binding="early" exmode="lax">

<state id="initialState">
    <transition target="state1" cond="TRUEPREDICATE" />
</state>
<state id="state1">
    <transition target="state2" cond="SELF.currentStateName == 'state1'" />
</state>
<state id="state2">
    <transition target="state1" cond="SELF.currentStateName == 'state2' && SELF.count <  5" />
    <transition target="finalState" cond="SELF.currentStateName == 'state2' && SELF.count >=  5" />
</state>
<state id="finalState"/>
</scxml>

我想使用 NSXMLParser 解析这个文件。当我单击按钮时,我的想法是,我们要检查状态和目标。
我想显示当前状态值。

我该怎么做?

4

1 回答 1

0

整个文档将采用字典格式。在此字典中,状态将是一个具有键 id 的字典,而转换是另一个具有键目标的字典,cond。在-didStartElement中,您可以获得这些值。

猜猜,这对你有用!

于 2012-10-03T11:37:22.167 回答