UIView is sized out of the blue

2012-01-02 Thread Alexander Reichstadt
Hi, when returning from my detail view the list view is sized out of the blue. in viewDidAppear I do this: - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; if ([theSearchbar.text length]){ [theSearchbar becomeFirstResponder]; [self

Re: UIView is sized out of the blue

2012-01-02 Thread Alexander Reichstadt
I found the issue. The navigation bar was first shown and then removed, thus I ended calculating a wrong size. Thanks On 02.01.2012, at 16:17, Alexander Reichstadt wrote: Hi, when returning from my detail view the list view is sized out of the blue. in viewDidAppear I do this: -