views:

327

answers:

2

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.

+1  A: 

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.

TechZen
Don't think the view is an action sheet - the background of the view would be modal, and semi-transparent.
petert
+3  A: 

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.

Vladimir