- (void)applicationDidFinishLaunching

UIApplication *)application {
projectsArray = [[NSUserDefaults standardUserDefaults] objectForKey:@"projectsArray"];
if (projectsArray == NULL) {
projectsArray = [[NSMutableArray arrayWithObjects:@"New Project", nil] retain];
}
}
- (void)applicationWillTerminate

UIApplication *)application {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject

rojectsArray forKey:@"projectsArray"];
// Save data if appropriate
}
In your code.. What is "projectArray" and "New Array"..?
I am new in iphone development so i dont know how to use NSUserdefaults in code.
I want save array value in it.