0

我正在编写一个流媒体音乐应用程序,我真的很喜欢音乐应用程序和 Pandora 中的通用“正在播放”按钮。我正在尝试自己实现它们。不幸的是,我尝试过的方法让我自己以及试图帮助我的人都感到困惑。到目前为止,这是我尝试过的,所有这些都不起作用/部分起作用:

  • static UIBarButtonItem在所有控制器中使用 a (工作不一致,有时没有 segue)
  • 手动向 Interface Builder 中的所有控制器添加按钮(有效,但在转换时会导致淡出/淡入动画)
  • 创建一个视图控制器,该控制器具有static UIBarButtonItem所有控制器的子类(消除了方法 1 中的 no segue 问题,但仍然表现不一致)

TL;DR:我不知道如何实现一个通用的右栏按钮项。请告诉我怎么做。

带有我的层次结构的空白表示的演示项目。

编辑:潘多拉的开发者尼尔混合回答了这个问题。完全一样的问题。但我不明白。如果有人能解释他的方法,那就太好了。

4

3 回答 3

3

我为您实现了一个解决方案,它使用一个BarButtonManger由自定义UINavigationController子类用作委托的单例。
您仍然必须确定按钮的目标应该是什么(VC 导航到,导航控制器,其他一些单例/应用程序委托,..)但是这个解决方案应该可以帮助您:http
://cl.ly/3M151o1i3z3O 不要忘记将故事板中导航控制器的类更改为 CustomNavigationController!

//  BarButtonManager.h
#import <UIKit/UIKit.h>

@interface BarButtonManager : NSObject <UINavigationControllerDelegate>

+ (BarButtonManager*)sharedInstance;

@end


//  BarButtonManager.m
#import "BarButtonManager.h"

@implementation BarButtonManager {
    UIBarButtonItem *_sharedItem;
}

+ (BarButtonManager*)sharedInstance
{
    static BarButtonManager *instance;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        instance = [[BarButtonManager alloc] init];
    });
    return instance;
}


- (UIBarButtonItem*)sharedButtonItem
{
    if (!_sharedItem) { // not thread safe, but let's assume this is only called from UI thread
        UIButton *nowPlayingButton = [UIButton buttonWithType:UIButtonTypeCustom];

        UIImage *background = [[UIImage imageNamed:@"nav-bar-now-playing-button-silver.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(4.0, 7.5, 5.0, 13.0)];
        UIImage *backgroundPressed = [[UIImage imageNamed:@"nav-bar-now-playing-button-pressed-silver.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(4.0, 7.5, 5.0, 13.0)];

        [nowPlayingButton setBackgroundImage:background forState:UIControlStateNormal];
        [nowPlayingButton setBackgroundImage:backgroundPressed forState:UIControlStateHighlighted];

        nowPlayingButton.frame = CGRectMake(0.0, 0.0, background.size.width, background.size.height);

        NSMutableParagraphStyle *centre = [[NSMutableParagraphStyle alloc] init];
        centre.alignment = NSTextAlignmentCenter;
        centre.lineBreakMode = NSLineBreakByWordWrapping;


        NSMutableAttributedString *nowPlayingTitle = [[NSMutableAttributedString alloc] initWithString:@"Now Playing"];
        [nowPlayingTitle addAttributes:@{NSFontAttributeName : [UIFont boldSystemFontOfSize:9.5], NSParagraphStyleAttributeName : centre, NSForegroundColorAttributeName : [UIColor whiteColor]} range:NSMakeRange(0, nowPlayingTitle.length)];


        [nowPlayingButton setAttributedTitle:nowPlayingTitle forState:UIControlStateNormal];

        nowPlayingButton.titleLabel.lineBreakMode = NSLineBreakByCharWrapping;
        nowPlayingButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
        nowPlayingButton.contentVerticalAlignment = UIControlContentVerticalAlignmentTop;
        [nowPlayingButton setTitleEdgeInsets:UIEdgeInsetsMake(0, -3, 0, 5)];

        [nowPlayingButton addTarget:nil action:@selector(nowPlayingPressed) forControlEvents:UIControlEventTouchUpInside];

        _sharedItem = [[UIBarButtonItem alloc] initWithCustomView:nowPlayingButton];
    }
    return _sharedItem;
}

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    navigationController.topViewController.navigationItem.rightBarButtonItem = nil;
    UIBarButtonItem *sharedItem = [self sharedButtonItem];
    sharedItem.target = viewController;
    viewController.navigationItem.rightBarButtonItem = sharedItem;
}

@end


//  CustomNavigationController.h
#import <UIKit/UIKit.h>

@interface CustomNavigationController : UINavigationController

@end

//  CustomNavigationController.m
#import "CustomNavigationController.h"
#import "BarButtonManager.h"

@implementation CustomNavigationController

- (id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if (self) {
        self.delegate = [BarButtonManager sharedInstance];
    }
    return self;
}

@end
于 2013-03-02T09:04:57.743 回答
2

我最近写了一篇关于这个问题的博客文章:http: //www.codebestowed.com/ios-shared-barbuttonitems

它使用与 Martin Ullrich 相同的策略,但还详细说明了如何在 Storyboard 中进行设置,这需要一些技巧。我将尝试在这里进行总结,因为我知道在 SO 中不鼓励仅发布链接。

基本上,问题是当您将 NavigationController 拖到 Storyboard 中时,它不会为您创建可编辑的 NavigationBar。为了解决这个问题,创建一个 ViewController 并选择 Editor->Embed In->Navigation Controller。通过此方法创建的 NavigationController 将具有一个 NavigationBar,您可以将 BarButtonItems 拖动到该导航栏。将此新控制器链接到 UINavigationController 的自定义子类,然后您可以为导航栏中的任何内容创建 IBOutlets。

因此,结合使用此 hack 和 Martin Ullrich 的答案,将为您提供所需的功能 + 使用 Storyboard 功能的能力。

于 2014-03-15T05:28:31.197 回答
0

没有太大的痛苦。您可能有一个“播放器”视图控制器。并在应用程序委托中创建一个变量日历“universalPlayer”。在您创建“播放器”对象时,您应该将其分配给“通用播放器”。然后将条形按钮添加到您的导航控制器。在 bar 按钮的操作上,您可以简单地从 AppDelegate 获取播放器视图控制器。这是一个简单的解决方案。

于 2013-03-02T09:19:48.437 回答