Can I increase the animation speed of presentModalViewController?
问题 I'm writing a drawing application that shows a tools view controller when the user clicks an item in a toolbar. However, several of my beta testers have reported that the tools palate opens too slowly. I'm using the standard presentModalViewController:animated: call to display the tools, and I've tried wrapping it in a code block like this to speed it up: [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration: 0.1]; [self presentModalViewController:settings animated:YES];