Is it possible to move a UIToolBar? The following code doesn’t work
CGRect toolbarFrame = self.tryToolbar.frame;
toolbarFrame.origin.y = 10;
self.tryToolbar.frame = toolbarFrame;
but I’ve read examples of animations involving toolbars, so I guess it would work. Thanks
A better way of moving objects is using CGRectMake. Here is an example of moving a toolbar, it will also animate its motion.
With this you can change how much it moves left/right (by adding or subtracting to x) or up/down by (adding/subtracting to y)