iBooks 中的导航栏正是我想要实现的。也就是说,一个透明的顶部栏,左上角有返回按钮,右上角有一些按钮来调用操作。
但是,我不确定如何实现这种效果。尤其是透明度。谁能指出我如何实现这一目标的正确方向?
iBooks 中的导航栏正是我想要实现的。也就是说,一个透明的顶部栏,左上角有返回按钮,右上角有一些按钮来调用操作。
但是,我不确定如何实现这种效果。尤其是透明度。谁能指出我如何实现这一目标的正确方向?
使用自定义 UIView 子类。只需添加一些按钮并设置视图的 alpha。使用控制器的 UINavigationController 推送或弹出控制器。导航栏应隐藏。
I would not use a navigationControllerBar, I would use a simple UIToolbar to do this. Especially you can have only two button on the navigationControllerBar (left and right button) unlike on a UIToolbar.
The UIToolbar is absolutely customizable, you can set the opacity to 0% and the opaque to NO, after it can be transparent....
使用 UIView 或 UIToolbar alpha 是完全可定制的。您应该继承这两个(UIView 或 UIToolbar)之一,添加您的按钮,然后从那里开始。