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];
正しい方法を教えてください