Re: UIView hidden property

2011-04-26 Thread koko
Duh! Thanks for hitting me in the head ... When the parent view is hidden, all the stuff contained in it will be invisible as well -koko On Apr 26, 2011, at 8:39 PM, Evadne Wu wrote: > When the parent view is hidden, all the stuff contained in it will be > invisible as well. So you might li

Re: UIView hidden property

2011-04-26 Thread Evadne Wu
When the parent view is hidden, all the stuff contained in it will be invisible as well. So you might like to try sibling views instead of hierarchical views? -ev On Apr 27, 2011, at 10:35, koko wrote: > I though I was following a good example ... I do not get the results I expect. > > I have

UIView hidden property

2011-04-26 Thread koko
I though I was following a good example ... I do not get the results I expect. I have a view controller. To this I have added a second view and wired it up through its IBOutlet. In viewDidLoad: [[self view] addSubview:m_projectSelector]; m_projectSelector.hidden=NO;