How to set iPhone/iPad table view transparent ?

Hi,

In order to simply set the iPhone/iPad table view transparent use the following line of code.

urTblView.backgroundColor = [UIColor clearColor];

Here ‘urTblView’ is the table view that you want to make transparent. Try it out. This single line will make your table view transparent and looks better.
:)