在编写presentViewController
completion
的处理程序闭包时,对self的引用应该是强(默认),弱或无需?
[self presentViewController:actionSheet animated:YES completion:^{
[self.tableView deselectRowAtIndexPath:indexPath animated:YES];
}];
请注意,我不会将完成块存储在自己中,但如果presentViewController
completion
块作为属性存储在Apple实现中会发生什么?