我可以使用setBackgroundVerticalPositionAdjustment更改自定义栏按钮项的y,但是如何更改水平位置?
[viewController.navigationItem.rightBarButtonItem setBackgroundVerticalPositionAdjustment:50 forBarMetrics:UIBarMetricsDefault];
答案 0 :(得分:8)
您可以使用自定义视图创建条形按钮,在该视图中,您可以创建自己的布局。它可以只是简单的UIButton,你可以在UIButton中设置edgeInsets。
请参阅Customization of UINavigationBar and the back button
f.e。
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
[btn setBackgroundImage:[UIImage imageNamed:@"chk_back.png"] forState:UIControlStateNormal];
[btn addTarget:self action:@selector(BackBtn) forControlEvents:UIControlEventTouchUpInside];
UIView *customView = [[[UIView alloc] initWithFrame:CGRectMake(0,0, 50, 38)] autorelease];
btn.frame = CGRectMake(10, 3, 30, 32); // where you can set your insets
[customView addSubview:btn];
UIBarButtonItem *barBtn = [[UIBarButtonItem alloc] initWithCustomView:customView];
或者您可以在条形图之后添加一些fixedSpace吧或者为条形图项添加
UIBarButtonItem *fixedSpace = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace
target:nil
action:nil];
[fixedSpace setWidth:20];
答案 1 :(得分:1)
您可以更改imageInsets
的{{1}}。
例如:
rightBarButtonItem