In my iPhone app, I am having a requirement of putting a tableView that is similar to GridView.
How can we create and implement it?
As Simon mentioned... I don't think a tableView would be the best options for this.
I would use a UIScrollView. Allow for both horiz and vert scrolling. This will allow you to pan around any direction. you could even add snapping to have the scroll view always stop at the edge of cells so you don't wind up with a lot of half cells on the display.
tableViews would be a create model though. Everything from the display calls to creating (using a re-use pool) is all there in tableView and could be adapted to use a grid.