Separator between toolbar items in UIToolbar

2020-08-17 17:17发布

How to add a separator between buttons in a UIToolbar?

Sample image is shown in the below link

enter image description here

4条回答
时光不老,我们不散
2楼-- · 2020-08-17 17:54

I did it with a custom view button, with a 1 pixel wide background:

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 1, 44)];
label.backgroundColor = [UIColor whiteColor];

UIBarButtonItem *divider = [[UIBarButtonItem alloc] initWithCustomView:label];
// Add button to array of toolbar items
[items addObject:divider];
// Or set items directly:
//toolbar.items = [NSArray arrayWithObject:divider];
label.text = @"";
查看更多
Animai°情兽
3楼-- · 2020-08-17 17:54

You can also make a toolbar button and set the Title = |

查看更多
4楼-- · 2020-08-17 18:08

I can think of two ways :

(a) You could make them very thin toolbar buttons with user interaction disabled.

(b) Your other choice would be to implement your own toolbar. I'd try (a) first ;)

查看更多
疯言疯语
5楼-- · 2020-08-17 18:09

If yo want a clean, simple layout I would prefer a very thin image with this separator in it. Then you can add fix distances between your normal button, the separator image button (user interaction disabled) and the next button.

查看更多
登录 后发表回答