Cctableview,several cells in one row

i want to make a tableview, which contains several cells(not only one cell as usual) in one row.
is there any way to do this?
please help me.

First, there is no built in support for this, and that is by design. In UIKit, you would using UICollectionViews for a task like that. In any case, there is a workaround.

You need to implement that functionality within the cell. In other words, create a CCTableViewCell subclass called TableViewRow, and within the class, you create TableViewCell and position it the way you want.