The following code has been correctly write plist, but no way to detect whether there is to write the same data.
How to do it does not already joined the data to repeat the join.
-(void)saveData{
// Create the new dictionary that will be inserted into the plist.
NSMutableDictionary *nameDictionary = [NSMutableDictionary dictionary];
[nameDictionary setValue:wooname forKey:@"wooname"];
[nameDictionary setValue:woodata forKey:@"woodata"];
[nameDictionary setValue:woojclass forKey:@"woojclass"];
[nameDictionary setValue:woojtime forKey:@"woojtime"];
[nameDictionary setValue:woojpin forKey:@"woojpin"];
[nameDictionary setValue:woojsps forKey:@"woojsps"];
[nameDictionary setValue:woojspall forKey:@"woojspall"];
[nameDictionary setValue:wooUrl forKey:@"wooUrl"];
NSString *rootPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *plistPath = [rootPath stringByAppendingPathComponent:@"myData.plist"];
NSMutableArray *plist = [NSMutableArray arrayWithContentsOfFile:plistPath];
if (plist == nil) plist = [NSMutableArray array];
[plist addObject:nameDictionary];
[plist writeToFile:plistPath atomically:YES];
[plist insertObject:nameDictionary atIndex:0];