最近写代码发现一个问题, 只是想细致推敲下.
一些三方的方法会这样写:
[self.navigationController presentViewController:vc animated:YES completion:NULL];
这句我一般会写成:
[self.navigationController presentViewController:vc animated:YES completion:nil];
问题来了, completion对应的是个block. block置空是用NULL好些呢还是nil?
block은 객체이며, 보통
을 사용해도 문제는 없습니다.nil
을 사용합니다. 물론NULL