模仿 UIBarButtonItem 的按钮

Button to imitate UIBarButtonItem

我正在使用 UIBarButtonItems 来触发特殊操作,但我还想在屏幕底部添加另一个按钮,其尺寸与在 NavigationBar 中创建的按钮的尺寸相同,我该怎么做?

我可以在 Interface Builder 中使用一些固定的 width/height 约束来完成它,还是我必须以编程方式来完成它,如果可以,你能给我一个例子吗?

谢谢

最简单的方法是添加 UIToolbar to the bottom of the view. If your view controller is in a UINavigationController, the best way to do this would be to add the bar button items, either in Interface Builder by drag-and-drop or programmatically using setToolbarItems.