Walkthrough / Tooltip / Demo for iPhone App

I have an application that attracts older demographics. The interface is simple, but with some customizable controls where simple graphics are not fully understood (save to a playlist, for example, by genre).

I saw a lot of applications with excellent passage through the first run (examples here ), but I donโ€™t know if there are any existing libraries.

Your suggestions are welcome.

+6
source share
3 answers

I found CMPopTipView that, although it does not meet my needs, may be useful to those who want a tool tip from time to time.

+8
source

Most of these overlay / walkthroughs can be accomplished by adding a subview to the main window of your application. There are some cases of edges that need to be considered, but for the most part you just need to get a link to a window with

UIWindow* keyWindow; keyWindow = [UIApplication sharedApplication].keyWindow; 

Then you would add your overlay view as a subcategory with:

 [keyWindow addSubview:anOverlayView]; 

The processing of taps to reject the overlay can be performed using a gesture recognizer.

+2
source

If you want to create a demo version with a click that runs in a browser and on mobile devices, AppDemoStore is the right tool for you. You just need to download some relevant application screenshots, add hotspots for navigation between screens and callouts for explanations. It only takes a couple of minutes and it's free. Regards, Daniel

+2
source

Source: https://habr.com/ru/post/896277/


All Articles