I have a UINavigationController which loads a 'SwitchViewController' that places a UISegmentedControl on the right hand side of the UINavigationController. The UISegmentedControl is used for flipping the current UIView using animation. My problem is that when 'SwitchViewController' is loaded, the UISegmentedControl is added to the navigation bar using an animation -- it slides from the top left. I want to prevent this.
Here is the code I use to load the UISegmentedControl (from the 'SwitchViewController')
- (void)viewDidLoad
{
NSArray *options = [NSArray arrayWithObjects:@"T", @"M", @"V", nil];
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:options];
[segmentedControl addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged];
segmentedControl.segmentedControlStyle = UISegmentedControlStyleBar;
segmentedControl.selectedSegmentIndex = 0;
UIBarButtonItem *segmentBarItem = [[UIBarButtonItem alloc] initWithCustomView:segmentedControl];
[self.navigationItem setRightBarButtonItem:segmentBarItem animated:NO];
[segmentedControl release];
[segmentBarItem release];
....
[super viewDidLoad];
}
Here is the code from the segmentChanged: method called by the UISegmentedControl
- (void) segmentChanged:(id)sender
{
UISegmentedControl *segmentedControl = (UISegmentedControl *)sender;
// Lazy load the map view
if (self.mapViewController == nil)
{
MyMapViewController * myMapViewController = [[MyMapViewController alloc] initWithNibName:@"MyMapView" bundle:nil];
UIImage *image = [UIImage imageNamed:@"BattleMap8.png"];
myMapViewController.myImage = image;
self.mapViewController = myMapViewController;
[myMapViewController release];
}
[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1.25];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
UIViewController *coming = nil;
UIViewController *going = self.currentViewController;
UIViewAnimationTransition transition;
if (segmentedControl.selectedSegmentIndex == 0)
{
coming = self.webViewController;
transition = UIViewAnimationTransitionFlipFromLeft;
}
else if (segmentedControl.selectedSegmentIndex == 1)
{
coming = self.mapViewController;
transition = UIViewAnimationTransitionFlipFromRight;
}
if (coming != going)
{
[UIView setAnimationTransition:transition forView:self.view cache:YES];
[coming viewWillAppear:YES];
[going viewWillDisappear:YES];
[going.view removeFromSuperview];
[self.view insertSubview:coming.view atIndex:0];
[going viewDidDisappear:YES];
[coming viewDidAppear:YES];
[UIView commitAnimations];
self.currentViewController = coming;
}
}
If I comment out the code for the animation in the above method, the UISegmentedControl is added to the navigation bar without sliding from the top left. This code is only executed after the UISegmentedControl is added, but its presence seems to have a side-effect on the way the UISegmentedControl is added.
Thanks in advance...
[UIView transitionFromView:going.view toView:coming.view duration:1 options:UIViewAnimationOptionTransitionFlipFromLeft completion:nil];– asterix May 30 '11 at 9:30