Any good framework for placing users in iPhone apps?

I am wondering if anyone knows of a good framework / open source for hosting users. Basically something that a help screen can display when users first download and use your app.

+3


source to share


2 answers


Hope you found something, but for others who may still be looking, take a look at this:



https://github.com/workshirt/WSCoachMarksView

+3


source


I don't know what the infrastructure is for; there are really only a few steps:

(1) Create a user preference which is a BOOL called "runBefore". NSUserDefaults will return NO by default and you will save "YES" when you save your settings.

Then there are two cases, depending on whether you are using the XIB for your first screen:

If XIB is used:

(2) In the IB in this XIB, add a UIView overlaying the existing text / graphics screen to welcome your user and a large custom transparent button covering the entire view associated with the closeWelcome action.



(3) Then, in your first viewController in viewWillAppear, check for runBefore. If so, call the closeWelcome action which will remove it from the parent view

OR if the XIB is not currently in use:

(2) In IB, create an XIB with a UIView with text / graphics to greet the user and a large custom transparent button on the whole view associated with the closeWelcome action.

(3) Then, in your first viewController in viewWillAppear, check for runBefore. If not, enable the Welcome XIB. The user will then close it in your closeWelcome action which will remove it from the parent view.

-1


source







All Articles