私はすでに持っているXMLファイルからランダムな聖書の一節を選択しようとしています。ランダムな詩を抽出して表示し、詩番号と本の名前も表示したいと思います。
私はいくつかのXMLファイルを持っているので、それらをPlistに変換するのは面倒かもしれません。また、章番号と本の名前も抽出できる辞書を使用するかどうかはわかりません。
XMLファイルは次のようになります...
<bible translation="KJV">
<testament name="Old">
<book index="1" name="Genesis">
<chapter index="1">
<verse index="1" text="In the beginning God created the heaven and the earth."/>
<verse index="2" text="And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters."/>
<!-- THE REST OF THE XML HERE -->
</chapter>
</book>
</testament>
ランダムな詩を選択して、テキスト、本の名前、章番号を表示する方法について何かアイデアはありますか?