When creating a tiledmap with more than one tileset image, only the last loaded tileset shows up (all tileset .png are included correctly, and work by themselves)
In tiled: (each row is from seperate image)
In simulator: (two bottom rows are missing!)
The contents of the .tmx file: (notice the three seperate tilesets)
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.0" orientation="orthogonal" renderorder="right-down" width="10" height="10" tilewidth="40" tileheight="40" nextobjectid="1">
<tileset firstgid="1" name="tiles1_nonret" tilewidth="40" tileheight="40">
<image source="tiles1_nonret.png" width="200" height="80"/>
</tileset>
<tileset firstgid="11" name="tiles2_nonret" tilewidth="40" tileheight="40">
<image source="tiles2_nonret.png" width="200" height="80"/>
</tileset>
<tileset firstgid="21" name="tiles3_nonret" tilewidth="40" tileheight="40">
<image source="tiles3_nonret.png" width="200" height="80"/>
</tileset>
<layer name="groundTiles" width="10" height="10">
<data encoding="base64" compression="gzip">
H4sIAAAAAAAAA2NgGAXYgAyRWIhIzE4kBgBxSS7DkAEAAA==
</data>
</layer>
</map>