2

i'm building a to do list app that have a main page that I want to use for presenting some data in, and this main page have 3 action buttons that are:

List button - takes you to a page which present a list of things

Create button - takes you to the page where you create a new item

Profile button - takes you to the profile page

I want those action to be presented as tab bar buttons, but when I created a tabbarviewcontroller in the storyboard I notice that the main page is the first tab bar item...and it's not what i want to be the initial screen...

Can anyone please help me to figure it out?

I want the main screen to be some king of view controller that have 3 tab bar buttons, but each one of them is different than the initial screen.

this is what i want:

enter image description here

Thanks

rock Nroll
  • 63
  • 3

2 Answers2

1

That is not common navigation but if you want you can create a UIView with buttons and put in bottom of ViewController mother (Home page) and handle navigation with event segues simulating a UITabBarController

German
  • 413
  • 4
  • 15
  • but isn't a tabbar giving me a good functionality that i can use? or i can acomplish all the functionality with just using buttons on a view controller..? @German – rock Nroll Nov 01 '14 at 21:08
  • You have to work more on the constrains to look better on different devices, but you can accomplish all the functions of UITabBarController, until now I've done well. – German Nov 01 '14 at 23:51
0

In such kind of apps, the home page should be a tabbarcontroller. You can check a tabor example for this with storyboards.

Ian Hazzard
  • 7,661
  • 7
  • 34
  • 60
  • check out the photo i added, this is what i need :) thanks@! @user1376138 – rock Nroll Nov 01 '14 at 20:20
  • You can do this by adding buttons on view and put that view on your window and bring that view to top. You need to handle navigation manually and it will work like charm. – surendrasheoran May 12 '18 at 05:39