In most applications of UITableView
I have seen, the zoom capability of the UIScrollView
superclass is not active. That is, zoooming is not used to change the size of a cell, nor to alter the amount of information visible on a single page of the table. The scrolling capability is intended merely to browse through the contents of the table's cells. Put another way, not all of the capabilities of the superclass are used in the subclass in this case.
If your intent is to make the cell larger to accommodate more information, then there is good information in the Table View Programming Guide. If you had other ideas about what zooming would accomplish on a table, maybe you could elaborate?