コードを確認したところ、「Alarms.plist」ファイル フォーム リソースをドキュメント ディレクトリに移動していないという問題が見つかりました。リソース フォルダにあるファイルを編集することはできません。アプリデリゲートファイルに次のコードを記述します。
NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *theFileName = @"Alarms.plist"; //Change this appropriately
NSString *oldPath = [[NSBundle mainBundle] pathForResource:@"Alarms" ofType:@"plist"];//[NSString stringWithFormat:@"%@/Inbox/%@", documentsDirectory, theFileName];
NSString *newPath = [NSString stringWithFormat:@"%@/%@", documentsDirectory, theFileName];
if (![[NSFileManager defaultManager] fileExistsAtPath:newPath])
[[NSFileManager defaultManager] moveItemAtPath:oldPath toPath:newPath error:nil];
ドキュメント ディレクトリ フォルダにあるファイルに対して保存操作を実行します。