user831679
user831679

Reputation:

Tab Bar with popup buttons iPhone

I want to have this type of bar at the bottom of the application and whenever a button is clicked new buttons should popup, which one of them when clicked should take me to its connected view

enter image description here

Upvotes: 0

Views: 1028

Answers (2)

Adil Soomro
Adil Soomro

Reputation: 37729

You shouldn't use Popup as control, I'll recommend you to use it like a notification as this is not Apple way of showing controls.

Here is a nice link from boctor iDev recipes. You can find here custom UITabBar as well Notification

Upvotes: 2

RK-
RK-

Reputation: 12211

I would suggest you not to try customizing UITabbar. This will go against the normal behavior of UITabbar and Apple may reject your app for tampering with normal behavior.

You can try having a UIView with a set of buttons in them and bring the similar functionality as in your image.

Upvotes: 1

Related Questions