Normally, the UITableView is something like this:
[ cell 1 ]
[ cell 2 ]
[ cell 3 ]
[ cell 4 ]
But I want to mak
I don't think there is a available control which will enable you to do this. Your best bet is to roll your own.
In a nutshell you'll want to subclass UIScrollView, which will allow you to have more cells than you have room for on screen. It will also sort out all your swiping behaviour.
Into this scroll view you want to put a set of cells - I'd subclass UIView rather than trying to force UITableViewCell play nice with your Scroll View for these.
This is just a simple example of how to approach the problem. How many of the features of UITableView are you hoping to replicate?