TileMap documentation outdated

I’m trying to figure out how to use a tile map in cocos2dx using tile map editor.

The documentation here seems to be out of date:
http://www.cocos2d-x.org/wiki/TileMap

The layerNamed and tileAt methods seem to be marked as deprecated but I can’t seem to find any documentation referring to what the alternative should be.

Does anyone know if there is a more up to date example of how to use a tile map in cocos2dx somewhere, or does anyone know what the non deprecated alternatives to those methods are?

Did you check out Programmers Guide?

layerNamed will be getLayer and tileAt will be getTileAt

Thats perfect, thanks for this.