Block(闭包,代码块): 带有 局部变量 的 匿名函数。其本质是将要执行的代码进行包装,并且保存起来,等待需要执行的时候调用
// OC int (^ blockName)() = ^(int num) { } // Swift