UIToolbar in UIScrollView fixed with UIViewController as scrolling as subview problem?

The easiest way to do this is to use Interface Builder to set up your toolbar.

The easiest way to do this is to use Interface Builder to set up your toolbar. Just drop a UIToolbar in your window and hook it up to your view controller. Here's how you set up the buttons programmatically, but you could just as easily add them in IB and wire them up there.

- (void)viewDidLoad { UIBarButtonItem *addButton = UIBarButtonItem alloc initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject); NSArray *items = NSArray arrayWithObject:addButton; self.toolbar. Items = items; }.

I will try it, but i'm afraid that it will screw up the Uiscrollview – PartySoft Feb 7 '10 at 1:38 I tried it, and it doesn't show the toolbar somehow...only in interface builder.... i'm doing one thing to hide the TAB bar and navbar ...when I show the view... self.mynav. View setNeedsLayout; self. Mynav setNavigationBar appDelegate.

TabBarController. DesBottomBarWhenPushed = YES; – PartySoft Feb 7 '10 at 1:55 1 It's really hard to debug this without looking at your nib file. Is it possible that your Tabbar is over the top of your Toolbar?

– kubi Feb 7 '10 at 12:27.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions