我正在使用 UIModalPresentationFormSheet 演示样式呈现模式视图。
MPMediaItemCollection *albumItem = [self.albums objectAtIndex:index];
AlbumViewController *destination = [[AlbumViewController alloc] initWithAlbum:albumItem];
destination.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:destination animated:NO];
当用户在模态视图之外点击时,它会关闭。但是,它仍然在内存中,它没有被释放。
处理这个问题的正确方法是什么?
编辑:好像 AlbumViewController 里面有些东西没有被正确释放。我这边的一个错误。