2

iBooks 中的导航栏正是我想要实现的。也就是说,一个透明的顶部栏,左上角有返回按钮,右上角有一些按钮来调用操作。

但是,我不确定如何实现这种效果。尤其是透明度。谁能指出我如何实现这一目标的正确方向?

在此处输入图像描述

4

3 回答 3

1

使用自定义 UIView 子类。只需添加一些按钮并设置视图的 alpha。使用控制器的 UINavigationController 推送或弹出控制器。导航栏应隐藏。

于 2013-04-04T23:26:04.447 回答
0

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....

于 2013-04-04T23:32:57.767 回答
0

使用 UIView 或 UIToolbar alpha 是完全可定制的。您应该继承这两个(UIView 或 UIToolbar)之一,添加您的按钮,然后从那里开始。

于 2013-04-05T05:49:18.643 回答