Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a textbox with submit button . I need when i press to submit and data in the textbox should be written in the plist . I tried the below code , but nothing is been changing in the plist .I have created a plist with name sample.plist.

 -(void) SubmitAction {
NSString *path = [NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *finalPath = [path stringByAppendingPathComponent:@"sample.plist"];
NSMutableDictionary *plistDict = [NSMutableDictionary dictionaryWithContentsOfFile:finalPath];
NSMutableArray *titleArray=[plistDict valueForKey:@"title"];

[titleArray addObject:textbox1.text];

[plistDict setValue:titleArray forKey:@"title"];

[plistDict writeToFile:finalPath atomically:NO];
}

The array created in the plist is below

<plist version="1.0">
<dict>
<key>title</key> <array/>
 </dict>
</plist>

please tell what else i need to do ..where is my fault

share|improve this question
check if the file exist at the path or not by using file manager, – spider1983 Dec 6 '12 at 9:03
please can you tell me what would be the path .I have stored plist file in my project folder itself – SameSung Vs Iphone Dec 6 '12 at 9:09
check my answer.... – spider1983 Dec 6 '12 at 9:37

4 Answers

up vote 1 down vote accepted

You can use this working fine on my side

-(void)writeToPlist
{
BOOL success;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES); 
NSString *documentsDirectory = [documentPaths objectAtIndex:0];
NSString *documentPlistPath = [documentsDirectory stringByAppendingPathComponent:@"XYZ.plist"];

NSString *bundlePath = [[NSBundle mainBundle] bundlePath];  
NSString *bundlePlistPath = [bundlePath stringByAppendingPathComponent:@"XYZ.plist"];


if([fileManager fileExistsAtPath:documentPlistPath]){

    NSMutableDictionary *documentDict = [NSMutableDictionary 
    dictionaryWithContentsOfFile:documentPlistPath];
    NSMutableArray *valArray = [NSMutableArray arrayWithArray:[self readFromPlist]];
    int index = [valArray count];
    [valArray insertObject:@"lastObject" atIndex:index];
    [documentDict setObject:valArray forKey:@"title"];

    success =[documentDict writeToFile:documentPlistPath atomically:NO];

} else {

    NSError *error;
    BOOL written =  [fileManager copyItemAtPath:bundlePlistPath toPath:documentPlistPath 
    error:&error];

    if (written) {
        NSMutableDictionary *documentDict = [NSMutableDictionary 
        dictionaryWithContentsOfFile:documentPlistPath];
        NSMutableArray *valArray = [NSMutableArray arrayWithArray:[self readFromPlist]];
        int index = [valArray count];
        [valArray insertObject:@"lastObject" atIndex:index];
        [documentDict setObject:valArray forKey:@"title"];

        success =[documentDict writeToFile:documentPlistPath atomically:NO];

    }else {
        NSLog(@"Plist couldnot be copied from bundle to directory!!!");
    }

} 

}
 -(NSArray*)readFromPlist
 {
   NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
  NSUserDomainMask, YES); 
  NSString *documentsDirectory = [documentPaths objectAtIndex:0];
 NSString *documentPlistPath = [documentsDirectory stringByAppendingPathComponent:@"XYZ.plist"];

   NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:documentPlistPath];

   NSArray *valueArray = [dict objectForKey:@"title"];

   return valueArray;

 }

replace @"lastobject" with your textbox.text;and replace XYZ.plist with your sample.plist.

share|improve this answer
Plist couldnot be copied from bundle to directory!! :(( – SameSung Vs Iphone Dec 6 '12 at 9:57
how are you making you r plist and where are you adding it coz this code is running good at my side...i guess you are making mistake at that point only. – spider1983 Dec 6 '12 at 9:59
is there any file with name sample.plist in your project ..if not then right click-> new file -> choose resource ->choose property list-> name it sample -> save, then click on sample.plist -> right click on the file add row name it title set it type as nsarray -> save it, run the above code. – spider1983 Dec 6 '12 at 10:04
ya please clear me.. if create my own plist? or it will be create automatically ?? i m not clear with this – SameSung Vs Iphone Dec 6 '12 at 10:05
1  
take the value in NsmutableArray then match your string by iterating its index.If it matches the password is correct. – spider1983 Dec 6 '12 at 11:24
show 17 more comments

Try:
firstly to check if file exists

  bool b=[[NSFileManager defaultManager] fileExistsAtPath:filePath];
 if (!b) 
 {
      NSLog(@"The file does not exist");
      return;
 }

  ........

 [titleArray addObject:[NSString stringWithFormat:@"%@", textbox1.text]];

 [plistDict setObject:titleArray forKey:@"title"];

Now if the file does not exist follow apple documentation https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/PropertyLists/CreatePropListProgram/CreatePropListProgram.html to create the file programmatically

share|improve this answer
nothing happening... for plist i have to create ..right ? with code i shown above...? – SameSung Vs Iphone Dec 6 '12 at 9:17
delete the app from simulator and try again it should work – Omar Freewan Dec 6 '12 at 9:19
done...not workin...still same value in plist :( – SameSung Vs Iphone Dec 6 '12 at 9:21
see the edit if file exist – Omar Freewan Dec 6 '12 at 9:25
ya man !! u r write !! "the fike does not exist" is coming. But I have created "sample.plist" in my project...please please this more :) – SameSung Vs Iphone Dec 6 '12 at 9:44
show 1 more comment

try using,

[plistDict setObject:titleArray forKey:@"title"];

and check whether array is having value or nil object

share|improve this answer
this makes my code crash ... :( – SameSung Vs Iphone Dec 6 '12 at 9:12
i guess titleArray is nil, NSLog that titleArray and check it – arthan.v Dec 6 '12 at 10:05
ya problem is plist is been saving in document directory. and everytime it overwrites...i need it for the REGISTER purpose..so it should not be overwrite – SameSung Vs Iphone Dec 6 '12 at 10:46

try with this code..

NSString* plistPath = nil;
NSFileManager* manager = [NSFileManager defaultManager];
if (plistPath = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"sample.plist"]) 
{
    if ([manager isWritableFileAtPath:plistPath]) 
    {
        NSMutableDictionary *plistDict = [NSMutableDictionary dictionaryWithContentsOfFile:finalPath];
        NSMutableArray *titleArray=[plistDict valueForKey:@"title"];

        [titleArray addObject:textbox1.text];

        [plistDict setValue:titleArray forKey:@"title"];

        [plistDict writeToFile:finalPath atomically:NO];
        [manager changeFileAttributes:[NSDictionary dictionaryWithObject:[NSDate date] forKey:NSFileModificationDate] atPath: [[NSBundle mainBundle] bundlePath]];
    }
}

i hope this help you...

share|improve this answer
whats the finalpath in ur code? – SameSung Vs Iphone Dec 6 '12 at 10:26
[[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"sample.plist"] this path is which in if condition you tried it?? – Paras Joshi Dec 6 '12 at 10:27
your code is full of errors man – SameSung Vs Iphone Dec 6 '12 at 10:49
where you get error dude?? and also try with your finalpath instead of plistpath in my code dude.. if any pro then tell me.. – Paras Joshi Dec 6 '12 at 10:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.