How do you create a Custom bottom tab bar in iOS xib files?
-
What techniques are people using to customize the bottom tab bar in iOS? For example the oink application has a beautiful custom bottom tab bar on their iPhone application. Did they use a view for this? In order to link it up are they creating new classes to get it to work?
-
Answer:
There are a few alternatives, but I doubt there is a solution where you can use interface builder. Take a look at CustomTabBar in this git repo: https://github.com/boctor/idev-recipes
Erik Olsson at Quora Visit the source
Other answers
In the application I am currently building for an undisclosed client (lets just say a major name in chocolate) they had a very custom menu (resembling a tab bar). However, some of the buttons were not intended to launch a new view. The interfaces were designed by another firm, and my job as an engineer is to implement it. I would have suggested another design to resemble a toolbar. Reasoning for this is that up until I knew (because things change) all the desired functionality I began to code it as a Tab Bar application. Then I was told that the interactions were changed so that 2 of the buttons caused actions to happen while in the same view. That meant I had to rebuild so that the app would pass through Apple's Human Interface Guidelines which state, "Donât use a tab bar to give users controls that act on elements in the current mode or screen. If you need to provide controls for your users, use a toolbar instead (for usage guidelines, see âToolbarâ)." One of the "tabs" was then also specified to launch a video in full screen. Which, again, was something that was discouraged in the Human Interface Guidelines which state, 'Donât remove a tab when its function is unavailable. If a tab represents a part of your app that is unavailable in the current context, itâs better to display a disabled tab than to remove the tab altogether. If you remove a tab in some cases but not in others, you make your appâs UI unstable and unpredictable." But rather than delay the project, I just made it happen. I cannot include a screenshot of the actual project, so I included something I threw together for this question. Basically you 1. Add a View 2. Add an ImageView (for background) 3. Add an ImageView along the bottom (to simulate the Tab Bar). Add the custom image. 4. Add the buttons (Round Rect Button). Make them a type "custom". Add an image to them. I will followup later elsewhere with how to best calculate the dimensions of the buttons. Ideally someone else can ask how to do it, then do the "Ask To Answer" from me.
Juan Gallardo
Related Q & A:
- How to link inside a specific jquery tab?Best solution by Stack Overflow
- How to create a custom email template?Best solution by Salesforce
- How do I use a custom avatar like a picture of me?Best solution by Yahoo! Answers
- How do I put a custom PSP firmware when I have 3.71 firmware?Best solution by krizka.net
- How do I create a custom theme?Best solution by windows.microsoft.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.