Moving UIToolBar
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. [UIView beginAnimations: @"moveField"context: nil]; [UIView setAnimationDelegate: self]; [UIView setAnimationDuration: 0.5]; [UIView setAnimationCurve: UIViewAnimationCurveEaseInOut]; self.tryToolbar.frame