1

我需要在 UINavigationBar 中调整 UIBarButtonItem 的垂直位置。我认为有办法做到这一点。将 UIView 添加到 UIBarButtonItem 并将 UIButton 添加到 UIView。如果你只有一两个导航栏也没关系。但是我认为如果你有几十个 UINavigationBar 尤其是在故事板中,这有点太麻烦了。所以我做了一些研究并找到了一个简单的解决方案。也就是使用类别。这是我的源代码:

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wobjc-protocol-method-implementation"

-(void)viewWillAppear:(BOOL)animated
{
    [self show:NO];
}

// do your override
-(void)viewWillLayoutSubviews
{
    [self changeTheButtonPosition:self.navigationItem.leftBarButtonItem];
    [self changeTheButtonPosition:self.navigationItem.rightBarButtonItem];
}

-(void)viewDidAppear:(BOOL)animated
{
    [self show:YES];
}

#pragma clang diagnostic pop

-(void)show:(BOOL)show
{
    self.navigationItem.leftBarButtonItem.customView.hidden = !show;
    self.navigationItem.rightBarButtonItem.customView.hidden = !show;
}

- (void)changeTheButtonPosition:(UIBarButtonItem *)barButtonItem
{
    if ( barButtonItem )
    {
        UIView* customView = barButtonItem.customView;
        //        NSLog(@"custom view frame = %@",NSStringFromCGRect(customView.frame));
        CGRect frame = customView.frame;
        CGFloat y = SYSTEM_VERSION_LESS_THAN(@"7") ? 10.0f : 5.0f;
        customView.frame = CGRectMake(frame.origin.x, y, frame.size.width, frame.size.height);
    }
}

它在 iOS 7 和 iOS 6 的第一个视图控制器中完美运行。但它不适用于 iOS 6 中的推送 UIViewController。我找不到任何原因。有人可以建议吗?我在 iOS 6 中的代码有什么问题?

4

1 回答 1

2

您应该能够使用UIAppearanceiOS5 中引入的代理方法来实现这一点。尤其是:

- (void)setBackgroundVerticalPositionAdjustment:(CGFloat)adjustment forBarMetrics:(UIBarMetrics)barMetrics
- (void)setTitlePositionAdjustment:(UIOffset)adjustment forBarMetrics:(UIBarMetrics)barMetrics

检查UIBarButtonItem 文档以获取更多信息。

于 2013-11-15T09:44:41.073 回答