【发布时间】:2012-10-16 14:40:38
【问题描述】:
我正在使用 UIModalPresentationFormSheet 演示样式呈现模式视图。
MPMediaItemCollection *albumItem = [self.albums objectAtIndex:index];
AlbumViewController *destination = [[AlbumViewController alloc] initWithAlbum:albumItem];
destination.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:destination animated:NO];
当用户在模态视图之外点击时,它会关闭。但是,它还在内存中,没有释放。
处理这个问题的正确方法是什么?
编辑:AlbumViewController 中似乎有些东西没有被正确释放。我的一个错误。
【问题讨论】:
标签: objective-c automatic-ref-counting modalviewcontroller