UIModalPresentationFormSheet プレゼンテーション スタイルでモーダル ビューを表示しています。
MPMediaItemCollection *albumItem = [self.albums objectAtIndex:index];
AlbumViewController *destination = [[AlbumViewController alloc] initWithAlbum:albumItem];
destination.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:destination animated:NO];
ユーザーがモーダル ビューの外側をタップすると、モーダル ビューが閉じます。ただし、まだメモリ内にあり、リリースされていません。
これに対処する正しい方法は何ですか?
編集:AlbumViewController内に適切にリリースされていない何かがあるようです。私の側のバグ。