How to add scrolling for UIBarButtonItem buttons on UIToolbar (to place many buttons on the toolbar)?
buttonDone = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(buttonDoneDown)];
NSArray *itemsArray = [NSArray arrayWithObjects:buttonDone, nil];
[toolbar setItems:itemsArray];
Thanks a lot for the help!
Replace superView of the toolbar: