工具栏中的iPhone应用程序问题

时间:2011-01-28 06:26:30

标签: iphone

这里我使用3.2.5sdk和4.2 IOS,

我在基于视图的应用程序上创建并添加基于导航的lick

UINavigationController *navigation = [[UINavigationController alloc]
    initWithRootViewController:viewController];
    [self.window addSubview:navigation.view];

现在我创建一个工具栏并将该工具栏设置为按钮,一旦我从portrate ti landscape旋转我的模式,或者反过来舔使用此代码

- (BOOL)shouldAutorotateToInterfaceOrientation:
    (UIInterfaceOrientation)interfaceOrientation 
{ 
    return YES;
}

- (void)willRotateToInterfaceOrientation:
    (UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{


 if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation))
 {
   [toolbarview setFrame:CGRectMake(0, 979, 768, 45)];
   NSLog(@"the frame size is %f,%f,%f,%f",toolbarview.frame.origin.x,
    toolbarview.frame.origin.y,toolbarview.frame.size.width,
    toolbarview.frame.size.height);
   NSLog(@"This is protrait mode");    
 }
 else
 {
   [toolbarview setFrame:CGRectMake(0, 723, 1024, 45)];
   NSLog(@"the frame size is %f,%f,%f,%f",toolbarview.frame.origin.x,
    toolbarview.frame.origin.y,toolbarview.frame.size.width,
    toolbarview.frame.size.height);
   NSLog(@"This is land mode");
 }

它工作正常但是一旦我从viewController导航到其他页面然后我改变我的模式在第二页上舔这个代码。

- (BOOL)shouldAutorotateToInterfaceOrientation:
   (UIInterfaceOrientation)interfaceOrientation 
{
    // Overriden to allow any orientation.
 if ((interfaceOrientation==UIInterfaceOrientationLandscapeLeft) ||
    (interfaceOrientation==UIInterfaceOrientationLandscapeRight))

 { 
  [viewController.toolbarview setFrame:CGRectMake(0, 723, 1024, 45)];
  NSLog(@"the frame size is %f,%f,%f,%f",viewController.toolbarview.frame.origin.x,
    viewController.toolbarview.frame.origin.y,
    viewController.toolbarview.frame.size.width,
    viewController.toolbarview.frame.size.height);
  NSLog(@"this is the Landscape Mode in home");

 }
 else 
 {
  [viewController.toolbarview setFrame:CGRectMake(0, 979, 768, 45)];
  NSLog(@"the frame size is %f,%f,%f,%f",viewController.toolbarview.frame.origin.x,
    viewController.toolbarview.frame.origin.y,
    viewController.toolbarview.frame.size.width,
    viewController.toolbarview.frame.size.height);
  NSLog(@"this is the portrait mode in home");

 }
 return YES;
}

根据第二页模式,我想更改工具栏位置,但它不起作用。

1 个答案:

答案 0 :(得分:0)

您不需要在轮换期间担心所有这些代码。只需将工具栏放在您想要的位置(看起来就像在屏幕的底部),然后只需设置他的自动调整遮罩,使其左右拉伸,并保持固定位置到底部。

Self.toolbar.autoresizingMask = UIViewAutoResizingFlexibleWidth | UIViewAutoResizingFlexibleTopMargin;

然后,无论何时旋转或调整视图大小,工具栏都应保持固定在底部,并且它将缩小或水平增长以适应。

或者......我的偏好是在你的xib中创建工具栏并在标签3上设置自动调整模板。