ios - is there any method to know if the app run for the first time -


i need know if app run first time setup default settings music on/off fx volume equal 0.5 ...

so there predefined way or need make manually?

you can put in - (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions:

if (![[nsuserdefaults standarduserdefaults] boolforkey:@"applicationrunbefore"]) {     [[nsuserdefaults standarduserdefaults] setbool:yes forkey:@"applicationrunbefore"];     [[nsuserdefaults standarduserdefaults] synchronize];     // application running first time -     ... } 

hope helps...


Comments

Popular posts from this blog

javascript - Iterate over array and calculate average values of array-parts -

iphone - Using nested NSDictionary with Picker -

objective c - Newbie question -multiple parameters -