2

2つのテキストボックスがあります。送信を押したときに、このテキストボックスのデータをPlistに保存したいと思います。これまでのところ、コードを記述して記述しましたが、問題はテキストボックスのデータの書き込み方法ですか?textbox1とtextbox2があるように。データをplistに保存したい

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Comments" ofType:@"plist"];
NSMutableArray *plistArray = [[NSMutableArray alloc] initWithContentsOfFile:filePath];


NSMutableDictionary *newComment = [NSMutableDictionary dictionary];
[newComment setValue:commentTitle.text forKey:@"title"];
[newComment setValue:comment forKey:@"comment"];


[plistArray addObject:newComment];
[plistArray writeToFile:filePath atomically:NO];

正しい方法を教えてください

4

2 に答える 2

3

テキストボックスを textbox1 と textbox2 にします

- (IBAction) saveData
{
// get paths from root direcory
NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
// get documents path
NSString *documentsPath = [paths objectAtIndex:0];
// get the path to our Data/plist file
NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"Comments.plist"];

// set the variables to the values in the text fields
self.title = textbox1.text;
self.comment = textbox2.text;



// create dictionary with values in UITextFields
NSDictionary *plistDict = [NSDictionary dictionaryWithObjects: [NSArray arrayWithObjects: title, comment, nil] forKeys:[NSArray arrayWithObjects: @"title ", @"comment", nil]];

NSString *error = nil;
// create NSData from dictionary
NSData *plistData = [NSPropertyListSerialization dataFromPropertyList:plistDict format:NSPropertyListXMLFormat_v1_0 errorDescription:&error];

// check is plistData exists
if(plistData) 
{
    // write plistData to our Data.plist file
    [plistData writeToFile:plistPath atomically:YES];
}
else 
{
    NSLog(@"Error in saveData: %@", error);
    [error release];
  }
 }
于 2012-12-06T06:35:50.803 に答える
1

as という名前の plist に配列を作成し、title これを好きにしてください。

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

    [titleArray addObject:textbox1.text];

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

    [plistDict writeToFile:finalPath atomically:NO];
}

最初に1つのテキストボックスで試してみてください.....動作することを確認してください....

于 2012-12-06T06:47:52.330 に答える