Reputation: 563
How could I create this custom tabbar and what does it consist of?
Upvotes: 5
Views: 8041
Reputation: 52227
On cocoacontrols.com you can find several TabBar implementations similar to this.
Upvotes: 11
Reputation: 6353
iOS 5 now allows to change the background image of the tabbar but this kind of custom control is much more complex. You would basically need to write your own view and controller that would change between views, move the arrow accordingly and activate/deactivate the buttons.
As of the elements it consists of, i would say
To see how a tabbar with an indicator could be coded check out this project on GitHub for a Twitter-like tabbar.
Upvotes: 1