Re: Adding toolbar items only works in viewWillAppear: (?)
Re: Adding toolbar items only works in viewWillAppear: (?)
- Subject: Re: Adding toolbar items only works in viewWillAppear: (?)
- From: David Rowland <email@hidden>
- Date: Tue, 19 Mar 2013 22:00:43 -0700
Is the table view hiding the toolbar? I ask because views are added as subviews on top of whatever is already there. Doing it in viewWillAppear would put them at the top. Doing it in viewDidLoad might leave it under the table view depending on the order in which they were added.
On Mar 19, 2013, at 8:36 PM, Koen van der Drift <email@hidden> wrote:
>
> On Mar 19, 2013, at 11:28 PM, David Rowland <email@hidden> wrote:
>
>> viewWillAppear occurs every time the view reappears, which may be frequently and has nothing to do with the creation and initialization of the view. Each time it appears you are recreating the button and setting in self.prevButton, e.g. which will release the former button and install an identical one. So, no, this is not the recommended place to do this.
>
> Good to know, thanks.
>
>>
>> Why viewDidLoad fails isn't clear. Is it possible that the toolbar is hidden or behind some other view?
>
>
> I'm calling self.navigationController.toolbarHidden = NO; - that makes it visible, correct?
>
> The rest of the view is a tableView, which came for free inside MyTableViewController.
>
> - Koen.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden