我需要向UINavigationItem titleView
添加一个按钮(实际上是UINavigation Bar的中心。
我使用以下代码来完成:
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(0, 0, 70, 30);
[btn setSelected:YES];
[btn setTitle:@"list" forState:UIControlStateNormal];
我已经做了以下事情:
我需要将相同样式的“完成”按钮(UIBarButtonItem
)提供给按钮“列表”吗?
答案 0 :(得分:7)
您可以使用UISegmentedControl:
UISegmentedControl *mySegmentedControl = [[UISegmentedControl alloc]
initWithItems:@"Example"]];
mySegmentedControl.segmentedControlStyle = UISegmentedControlStyleBar;
[mySegmentedControl addTarget:self action:@selector(myMethod)
forControlEvents:UIControlEventValueChanged];
self.navigationItem.titleView = mySegmentedControl;
答案 1 :(得分:1)
UIBarButtonItems只能用作UIToolbar中的项目(它们实际上不是UIView的实例),因此在titleView中直接使用UIBarButtonItem的唯一方法是将UIToolbar的实例设置为titleView并添加你的barButtonItem到该工具栏。但是,我认为这不会起作用。
我认为您需要做的是找到一种使用普通旧UIButton模仿UIBarButtonItem样式的方法。您可以使用UIKit artwork extractor获取用于创建UIBarButtonItems的实际图像文件。然后,只需使用该背景图像创建自定义UIButton,您就可以了。
答案 2 :(得分:1)
我使用了andrej的基于UISegmentedControl的方法并将其扩展了一点,使其更像普通的UIButton:
@interface SPWKBarButton : UISegmentedControl
- (id)initWithTitle:(NSString *)title;
- (void)setTitle:(NSString *)title;
@end
@implementation SPWKBarButton
- (id)initWithTitle:(NSString *)title
{
self = [super initWithItems:@[title]];
if (self) {
self.segmentedControlStyle = UISegmentedControlStyleBar;
NSDictionary *attributes = [NSDictionary dictionaryWithObject:[UIColor whiteColor]
forKey:UITextAttributeTextColor];
[self setTitleTextAttributes:attributes
forState:UIControlStateNormal];
}
return self;
}
- (void)setTitle:(NSString *)title
{
[self setTitle:title forSegmentAtIndex:0];
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesMoved:touches withEvent:event];
if (CGRectContainsPoint(self.bounds, [[touches anyObject] locationInView:self])) {
self.selectedSegmentIndex = 0;
} else {
self.selectedSegmentIndex = UISegmentedControlNoSegment;
}
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesEnded:touches withEvent:event];
if (CGRectContainsPoint(self.bounds, [[touches anyObject] locationInView:self])) {
[self sendActionsForControlEvents:UIControlEventTouchUpInside];
}
self.selectedSegmentIndex = UISegmentedControlNoSegment;
}
@end
对于基本用法,您可以将其用作UIButton插件替代品:
_button = [[SPWKBarButton alloc] initWithTitle:titles[0]];
[_button addTarget:self
action:@selector(doSomething:)
forControlEvents:UIControlEventTouchUpInside];
[self.navigationItem setTitleView:_button];
只有在分段控件的边界内发生触摸时才会触发事件。享受。
答案 3 :(得分:0)
是的,您也应该为按钮使用UIBarButtonItem" list"
使用自定义标识符和标题属性。
您可以使用UIBarButtonItem标识符"灵活空间"显示你的按钮" list"在中心。