我已经使用自定义 UIButton 初始化了 UIBarButtonItem,并将其设置为导航控制器中的 rightBarButtonItem。
UIBarButtonItem *rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:rightNavigationButton];//rightNavigationButton is the custom UIButton I set up before
self.navigationItem.rightBarButtonItem = rightBarButtonItem;
通过 UIButton 的外观代理,我设置了 UIControlStates 的颜色(正常/禁用/突出显示)。UIBarButtonItem 的行为符合预期。
当按下“保存按钮”时,我想突出显示 UIBarButtonItem 以提供已保存内容的视觉反馈。我想要做的是通过在保存动画期间更改标题的颜色来模拟 UIBarButtonItem 的突出显示,因为它似乎不能以编程方式触发突出显示动画(或设置选定的属性)(也在这篇文章)
所以我所做的是设置一个 IBOutlet 属性,将它连接到 InterfaceBuilder 中的 UIBarButtonItem 并将 rightBarButtonItem 分配给它。当按下“保存按钮”时,我正在尝试这个:
[UIView animateWithDuration:0.5f
delay:0.0f
options:UIViewAnimationCurveEaseOut
animations:^{
//some other animation code here
[self.barButtonItemOutlet setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIFont fontWithName:FONT_ICON size:FONTSIZE],UITextAttributeFont,
HIGHLIGHT_COLOUR,UITextAttributeTextColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, 0)],UITextAttributeTextShadowOffset,
[UIColor colorWithRed:0 green:0 blue:0 alpha:0.0],UITextAttributeTextShadowColor,nil]
forState:UIControlStateNormal];
}
completion:nil
];
但是根本没有任何事情发生。我让它以某种方式工作的唯一方法是禁用/启用它。但是由于禁用和突出显示的颜色应该不同,我需要这两种状态,这不是一个真正的选择。
任何帮助表示赞赏!