问题:我是否正确使用了这个块?没有泄漏或保留周期?
问题 1.5:这种风格好还是我应该只做一个内联块?
typedef void(^completionBlock)(void);
...
-(completionBlock)completionBlock{
return ^{
[[NSNotificationCenter defaultCenter] postNotificationName:kFetchNewTopicsAndReloadTableData object:nil];
};
}
..
-(void)refresh
{
[self dismissViewControllerAnimated:YES completion:[self completionBlock]];
}