Interesting stuff can be done with bringing a subview to front, I didn't know this feature before and only ran across it tonight. I thought it was a bit tricky which view get's where.
[self.view bringSubviewToFront:tableInfo];
This brings the table in the current view in front of all other subviews.

