1
E.g,我們有如何獲取塊的名稱?
typedef id(^func)(id);
func read_file = ^(NSString *path_to_file) {
return [NSString stringWithContentsOfFile:path_to_file encoding:NSUTF8StringEncoding error:NULL];
};
我不知道我們如何能得到這個塊的名字,如果我通過它在一些函數調用的參數? E.g,
fileOperator(read_file); // I want to print the block's name in this function.
謝謝。
塊沒有名稱。 – zaph