int (^func()) (int){retutn ^(int count) {return count + 1;};}
这个函数的返回值是一个函数(这个函数没有参数,返回值int)。函数体定义了一个函数,并且把它作为结果返回。