1

bar button 的 y 原点为 0 到导航栏,x 为 0。但我想为 barbutton 项目添加一些 y 位置。

 UIBarButtonItem *barbutton;

            barbutton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStyleBordered target:self action:@selector(onbackbtnpressed:)];
            [barbutton setWidth:30];
            [barbutton setTintColor:KANEKA_BLUE_COLOR];
            [barbutton setAccessibilityFrame:CGRectMake(10, 10, 30, 20)];
            self.navigationItem.leftBarButtonItem = barbutton;

请告诉我如何设置 barbutton 框架或如何设置 bar button y 位置。

4

2 回答 2

1

实际上,我已经设法以不同的方式设置了 y 原点,这可能是一个很大的过程,但它非常好。

我在 viewcontroller 中添加了一个工具栏,并设置了 bar 按钮项并隐藏了导航栏。它适用于所有 popover 控制器。

self.toolbar.hidden = NO;
        self.contentSizeForViewInPopover = CGSizeMake(self.view.frame.size.width-100,self.view.frame.size.height-100);
        self.navigationController.navigationBarHidden = YES;
        [self.toolbar setTintColor:KANEKA_BLUE_COLOR];
        [self.backbutton setTintColor:KANEKA_BLUE_COLOR];
于 2013-10-22T09:06:34.720 回答
0

我对这个问题的看法 - 根据 iOS 人机界面指南,不建议为导航栏上的栏按钮项目添加 y 间距。

我们可以通过为导航项设置一组按钮来更新 x 定位,如下所示:

  UIBarButtonItem *fixedSpaceBarButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
  [fixedSpaceBarButton setWidth:10];

  UIBarButtonItem *barbutton;

  barbutton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStyleBordered target:self action:@selector(onbackbtnpressed:)];
  [barbutton setWidth:30];
  [barbutton setTintColor:[UIColor redColor]];
  [barbutton setAccessibilityFrame:CGRectMake(10, 10, 30, 20)];

  self.navigationItem.leftBarButtonItems = [NSArray
                                            arrayWithObjects:fixedSpaceBarButton, barbutton, nil];
于 2013-10-22T05:44:03.983 回答