I am looking to design the following iphone screen flow that adheres to iOS App guidelines.

1) User selects one of 2 options in a UIViewcontroller. Ideally that is encapsulated in a UINavigationController.
2) Each option represents a very distinct workflow and in turn has a distinct set of tabs that is represented via UITabBarController.

Would the above design adhere to iOS App guidelines. If not what would be the best way to represent the above workflow.

有帮助吗?

解决方案

What you are trying to do is totally doable.

  • Create a new project: Single View Application
  • Open Storyboard and select the ViewController
  • Editor / Embeded In / navigation Controller
  • Add two UIButtons to your project
  • Add 2 TabBarControllers to ypur project
  • Connect every TabBarController to one UIBUtton through Segue Push
  • Ready. Your idea was drawn.

The result in this image.

enter image description here

An example project here.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top