This seems like it should be such a simple thing but I'm stumped. I have a view with two tableviews. The second table is filled with information based on the selection of the first table. The second table has to change the number of visible columns based on the selection in the first table.
To accomplish this I set the delegate for the second table and implemented tableViewSelectionDidChange. Works great so when the selection is changed in the first table the columns are updated in the second.
But here's the problem. When the view is first opened I need to set the visible columns of the second table based on the initial selection of the first but I can't seem to get the initial selection of the first table. awakeFromNib doesn't return the selection, nor does initWithNibName. I'm thinking these are fired before the first table is populated.
So here's the question. How do I get the initial selection of the first table when the view is presented for the first time.
Thanks all