将两个以上的Bar Button项添加到导航栏

时间:2015-04-01 12:10:03

标签: ios xcode swift

我正在尝试使用灵活空格键添加三个栏按钮项,但更改未在模拟器中反映出来。 。我已将导航栏固定在底部,左侧和右侧

Screenshot of Simulator and Storyboard

2 个答案:

答案 0 :(得分:0)

[self.navigationItem setRightBarButtonItems:[NSArray arrayWithObjects:undo, done, cancel, nil]];

[self.navigationItem setLeftBarButtonItems:[NSArray arrayWithObjects:undo, done, cancel, nil]];

答案 1 :(得分:0)

如果使用大小类和自动布局,请在工具栏和视图之间添加约束:前导空格= 0,尾随空格= 0,底部空间= 0,高度固定。 您可以根据需要添加任意数量的工具栏项,直到没有空格。

enter image description here

enter image description here