Any good tutorials for new app setup flows?

Hi there!

Looking to launch an app soon that requires a few things like location and notifications to work well. Anyone have any tutorials, guides or links to best practices for app setup flows, either from a UX or development perspective? Looking to integrate a welcome flow that checks for the right permissions and curious how others have tackled this.

Thanks,

J

That's a very (too) general question.

What is it more precisely that causes you problem ? Have you code to show ?

There are many tutorials on notification, location.

Just 2 examples:

h t t p s : / / w w w.raywenderlich.com/11395893-push-notifications-tutorial-getting-started

h t t p s : / / w w w.raywenderlich.com/5247-core-location-tutorial-for-ios-tracking-visited-locations

how folks place the launch hooks and decide what views to show given whether it's a users first open of the app, or whether they have completed some required setup step

You may have a lot of approaches to this.

So my own one.

  1. The initial screen should be very appealing to user. So I don't start with a settings screen which is a bit boring

  2. This initial view is the top level to navigate, giving access to a few other view

  3. In this view (once again, you should make it pleasant to look and related to the goal of your app)

  • a few buttons (3 to 5), at the bottom, to access the main functions
  • one of them may be to go to the settings view, but app should work even before this
  • another goes to the main function of your app (there should be one such function)
  • a help button, to give simple information to user on how to use app
  1. Of course, if it is a game, you should go directly to the play screen.

Hope that helps.

Any good tutorials for new app setup flows?
 
 
Q