如何获取像 zipcar 应用程序这样的标签?

发布于 2024-08-28 15:33:51 字数 254 浏览 7 评论 0原文

在演示中http://www.youtube.com/watch?v=TQ2EZ_tWsGc大约 22 点,他单击底部选项卡,一个新视图会向上滑动。它的顶部有三个选项卡。

如何让三个小选项卡在“查找汽车依据”视图中工作?

另外,他们是如何创建“查找汽车”文本所在的小选项卡的?它从视图中独立出来。

In the demo http://www.youtube.com/watch?v=TQ2EZ_tWsGc at about :22, he clicks the bottom tabbar and a new view slides up. It has three tabs at the top.

How do you get the three little tabs working in the "Find car by" view?

Also, how did they create the little tab where the "Find car by" text sits? It is sticking out on its own from the view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谢绝鈎搭 2024-09-04 15:33:51

如何获得这三个小标签
在“查找汽车依据”视图中工作?

这看起来就像普通的 UISegmentedControl。

另外,他们是如何创造出这个小东西的?
“查找汽车”文本所在的选项卡?
它是从
查看。

我认为视图本身覆盖了所有窗口区域,但它具有透明背景和背景图像,使其看起来很奇特的形状。因此,“查找汽车依据”必须只是放置在特定视图点中的 UILabel 或 UIButton。

How do you get the three little tabs
working in the "Find car by" view?

This looks like ordinary UISegmentedControl.

Also, how did they create the little
tab where the "Find car by" text sits?
It is sticking out on its own from the
view.

I think that view itself covers all window area but it has transparent background and also background image making it look a fancy shape. So "Find cars by" must be just UILabel or UIButton put in specific view's point.

小嗲 2024-09-04 15:33:51

该视图是一个操作表。左侧的按钮是单个分段控件,右侧的按钮是普通按钮。简单地绘制选项卡,并将其旁边的工作表部分设为透明。

The view is an action sheet. The buttons on the left are a single segmented control and the button on right is a plain button. The tab is simply drawn and the part of the sheet next to it is made transparent.

蓝戈者 2024-09-04 15:33:51

很简单:

  1. 在窗口中添加UIView,在底部
  2. 使用UIView动画做滑动效果
  3. 可以使用UIView黑色、透明来模拟遮罩

Very simple :

  1. Add UIView in window, at the bottom
  2. Use UIView animation to do the slide effect
  3. You can use a UIView black, transparent to simulate a mask
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文