views:

22

answers:

1

Hi Guys,

I have a UITableView overlaying over a UIMapView so you can select a specific building from the table and it shows you where it is on the map. Now that is working fine, but when the iPhone is in portrait mode there is not a lot of space to see the map so I am trying to put in a button to make the table appear and disappear as the user wants.

Does anybody know if this is possible?

Thanks Guys,

Callaghan001

+1  A: 
// To hide
table_view.hidden = YES;

// To show
table_view.hidden = NO;
Tuomas Pelkonen
I'm hitting myself over the head now, I should have seen that. Thanks for the help.Calaghan001.
Callaghan001