To make a UITableView transparent, you just need to set it’s opaque property to NO and make the background clear.
1 2 3 4 5 6 7 8 | |
Now whatever you have behind your UITableView will shine through. This technique works for all other UIView subclasses too (UITextView, etc…).