Mutable Array があり、いくつかの文字列を入力します。しかし、ビュー (ナビゲーション コントローラー) を離れて再度開くと、配列は空です。ビューを離れるたびに、可変配列が空になります。
if([name_Recipe isEqualToString:@""])
{
NSLog(@"Nothing");
}
else
{
[favoritesArrayDetail addObject:name_Recipe];
NSLog(@"%@", [NSString stringWithFormat:@"%@", favoritesArrayDetail]);
}